jQuery(document).ready(function(){
	jQuery("p.active").hide();
	jQuery("#menu div.abscontainer:last").addClass("last");	
			
	jQuery("a.active").mouseover(function(){
		jQuery("p.active:not(p.active:eq("+ jQuery("a.active").index(this) + "))").hide();
		jQuery("p.active:eq("+ jQuery("a.active").index(this) + ")").show();
 	});
	
	//jQuery("#dnn_ContentPane,a.empty").mouseover(function(){
	jQuery("#dnn_ContentPane,a.empty,#dnn_InfoPane,h1").mouseover(function(){
		jQuery("p.active").hide();
 	});
	
	jQuery("#header").mouseout(function(){
		jQuery("p.active").hide();
 	});
	

	
	jQuery('.topper.active').click(function() {
		return false;
	});
	/*CYCLE plugin for Before & Afters*/
	/*jQuery(".befores").each(function() {
		jQuery(this).cycle({ 
	    	fx:     'fade', 
		    speed:   300, 
		    timeout: 0,
			pager: '.befores',
			pagerEvent: 'mouseover'
			
		});
	});*/

}); 
