			$(document).ready(function(){
				
				//Hide things on document load
			  	$('#mainNav').hide();
			  	$('.quote').hide();
			  	$('#mainNav').fadeIn('slow');
				//remove no javascript class
				$('body').removeClass('nojs');
				
				//get title from li and use it to refer to the id of the box to be shown
			   	$('ul#csList li').mouseover(function () { 
					var id= $(this).attr("title");
					var str="#"+id;
			  	  	$(str).fadeIn(400);
				});
				
				//hide title on mouse out
			  	$('.quote').mouseout(function(){
			  	  	$(this).fadeOut(1000);
				});	
				$(document).pngFix(); 
				
				//Embed youtube video
				youTubeEmbed();
				
					
			}); 