// JavaScript Document
      function menu(number)
	  {
		
		  $("#flax_rbottom div").hover(
				function(){
					var img=$(this).find("a").attr("class");
					
					$(this).find("a").html(img)
					},
				function(){
					
						$(this).find("a").html("");	
					}
					  )		
		    var img=$("#flax_rbottom div").eq(number).find("a").attr("class");
		  	$("#flax_rbottom div").eq(number).find("a").html(img)
  
		}
			   						   
