// Menu
jQuery(document).ready(function(){

	 jQuery("#sitemenu a").hover(function() {
	 
	  jQuery(this).attr("title","");
	}, function() {
		  var hoverText = jQuery(this).attr("title");
	  jQuery(this).attr("title","");
	});
	 
	 jQuery("#sitemenu").children("li").each(function(i){
										 
var strindex=i.toString();
var classindex=strindex.charAt(strindex.length-1);

jQuery(this).addClass("sitemenu_"+classindex);
	});
	 
	  


jQuery("#sitemenu a").hover(function(){
jQuery(this).fadeTo("normal",0.8); // This should set the opacity to 100% on hover
},function(){
jQuery(this).fadeTo("normal",1.0); // This should set the opacity back to 60% on mouseout
});
	

});

jQuery('a').click(function() {

       this.blur();                
});
