			$(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(); 
				
				
				//home page flash feature
				var flashvars = {};
				var params = {};
				var attributes = {};
				attributes.id = "flash";
				swfobject.embedSWF("/flash/homePage.swf", "flash", "960", "470", "9.0.0", false, flashvars, params, attributes);	
					
			}); 