jQuery(document).ready(function(){	
	jQuery("#panels").find(".content").hide();	
	
	jQuery("#panels li").mouseout(function(){
		jQuery("#panels li").find(".content").hide();	
	});	
	
	jQuery("#panels li").mouseover(function(){
    	jQuery(this).find(".content").show();  	
    });		
	
	jQuery("#banner-home").fadeIn();
	
});
