$(document).ready(function(){ // This sets the opacity of the elements to 0% on load 
			$("p.hover-why, p.hover-what, p.hover-who, p.hover-how").css({'opacity' : '0'});
			$("#menu-main-menu > li:nth-child(1)").hover(function(){
			$("p.hover-why").css({'display' : 'inline'});		
			$("p.hover-why").fadeTo("fast", 1.0); // This sets the opacity of why to 100% on hover
			},function(){
			$("p.hover-why").fadeTo("fast", 0); // This sets the opacity back to 0% on mouseout
			});
			$("#menu-main-menu > li:nth-child(2)").hover(function(){
				$("p.hover-what").css({'display' : 'inline'});	
			$("p.hover-what").fadeTo("fast", 1.0); // This sets the opacity of what to 100% on hover
			},function(){
			$("p.hover-what").fadeTo("fast", 0); // This sets the opacity back to 0% on mouseout
			});
			$("#menu-main-menu > li:nth-child(4)").hover(function(){	
				$("p.hover-how").css({'display' : 'inline'});
			$("p.hover-how").fadeTo("fast", 1.0); // This sets the opacity of how to 100% on hover
			},function(){
			$("p.hover-how").fadeTo("fast", 0); // This sets the opacity back to 0% on mouseout
			});
			$("#menu-main-menu > li:nth-child(3)").hover(function(){	
				$("p.hover-who").css({'display' : 'inline'});
			$("p.hover-who").fadeTo("fast", 1.0); // This sets the opacity of who to 100% on hover
			},function(){
			$("p.hover-who").fadeTo("fast", 0); // This sets the opacity back to 0% on mouseout
			});
			
			$("#slider a img").removeAttr("title");
			
		});
		
		
		

