$(document).ready(function(){
	// PRELOAD CSS BACKGROUNDS
	$.preloadCssImages({statusTextEl: '#textStatus'});
	
	//SHOW SUBMENU	
	$('li#more ul').hide();
	$('li#more').hover(
			function() { 
				$('ul', this).fadeIn('slow'); 
			},
			function() { 
				$('ul', this).hide(); 
			}
		);

});





