$(document).ready(function(){
	
	
	// rename
	if( !$.browser.msie ) $("#menu").attr( "id", "jsmenu" );
	
	// process
	$("#jsmenu li")
		.each(function(i){
			var html;
			var text = jQuery("a", this).text();
			html = '<span class="text"><span>'+text+'</span></span>';
			html+= '<span class="overlay"><span>'+text+'</span></span>';
			jQuery("a", this).html( html );
		});
	
	// hover
	$("#jsmenu li").hover(function(){jQuery(".overlay", this).animate({'width':'100%'},"fast");},function(){jQuery(".overlay", this).animate({'width':'0%'},"fast");});
	
});
