function highlight(){
  var tags=document.getElementsByTagName("li");
  for(i in tags){
    if(tags[i].className=="element"){
        if(document.location.href==tags[i].firstChild.href){
            tags[i].className += "_selected";
        }
    }
  }
}



jQuery(function(){  
  $("#mainsites img").hover(function(){  
   $(this).stop().animate({opacity:'.7'})},  
    function(){$(this).stop().animate({opacity:'1.0'})}  
  );  
});
