$(window).load( function() {
								$("#overall").fadeIn(1000);
							} );




$(document).ready( function() {
						   		 			 
								 $("#content-inner").hide();
								 $("#content").mouseenter( function() {
																	
																    $(this).find("#content-inner").stop(true, true).fadeTo(300, 1);
																   } );
								 $("#content").mouseleave( function() {

																  	$(this).find("#content-inner").stop(true, true).fadeTo(300, 0);
																  } );
						   } );
