$(document).ready(function(){


	$('.ref-header').live('mousedown',function(){
	
		if($(this).parent().children('.ref-content').is(":hidden"))
		{
			
			$(this).parent().children('.ref-content').slideDown('fast');
		}
		else
		{
			
			$(this).parent().children('.ref-content').slideUp('fast');
			
			$('.background').css({'height':$(window).height()});
			$('.background').css({'width':$(window).width()});
		}
	
	});


})
