////////// link img
$(function(){$("#main a img").hover(function(){$(this).fadeTo(100,'0.6')},function(){$(this).fadeTo(150,'1')})});
$(function(){$(".contact a img").hover(function(){$(this).fadeTo(100,'0.6')},function(){$(this).fadeTo(150,'1')})});

////////// RollOver
function initRollovers(){if(!document.getElementById){return}var f=new Array();var a;var h=document.getElementsByTagName("img");for(var c=0;c<h.length;c++){if(h[c].className=="imgover"){var g=h[c].getAttribute("src");var b=g.substring(g.lastIndexOf("."),g.length);var d=g.replace(b,"_on"+b);h[c].setAttribute("hsrc",d);f[c]=new Image();f[c].src=d;h[c].onmouseover=function(){a=this.getAttribute("src");this.setAttribute("src",this.getAttribute("hsrc"))};h[c].onmouseout=function(){if(!a){a=this.getAttribute("src").replace("_on"+b,b)}this.setAttribute("src",a)}}}}try{window.addEventListener("load",initRollovers,false)}catch(e){window.attachEvent("onload",initRollovers)};

