$(document).ready(function() {
	
	$("#reportList li").hover(
		function(){
			$(this).find(".view-more").show();
		},
		function(){
			$(this).find(".view-more").hide();
	});
	
	$('.view-more-pds').toggle(
		function(){
			$('#pdsDetail').slideDown('fast');
			$('.view-more-pds span').text('Hide Details');
		},	
		function(){
			$('#pdsDetail').slideUp('fast');
			$('.view-more-pds span').text('Show Details');
	});
	
	prep_toggles();
	
	$('.closeAll').click(
		function(){
			$('.report-detail').hide();
			$('#reportList li').removeClass('open');
			$('.view-more').find('span').text('Show Details');
			prep_toggles();
	});
	
	$("ul.tabs").tabs("> .pane");
 
});

function prep_toggles() {
	$('.view-more').unbind('click');
	$('.view-more').toggle(
		function(){
			$(this).next('.report-detail').slideDown('fast');
			$(this).find('span').text('Hide Details');
			$(this).parent().addClass('open');
		},	
		function(){
			$(this).next('.report-detail').slideUp('fast');
			$(this).find('span').text('Show Details');
			$(this).parent().removeClass('open');
	});
}
