if(typeof jQuery=="undefined")jQuery=function(){};if(typeof jQuery.classBehaviours=="undefined")jQuery.classBehaviours=function(){};if(typeof jQuery.classBehaviours.handlers=="undefined")jQuery.classBehaviours.handlers=function(){};jQuery.classBehaviours.handlers.srcMouseHover={name:"srcMouseHover",cache:[],start:function(a){this.cacheImages(a);a.onmouseover=this.addHover;a.onmouseout=this.remHover},cacheImages:function(d){var a=this,b=typeof a.nodeName=="undefined"?d:a;if(!b.src)b=b.getElementsByTagName("IMG")[0];var c=a.cache.length;a.cache[c]=new Image;a.cache[c].src=b.src.replace("_link","_hover");a.cache[c+1]=new Image;a.cache[c+1].src=b.src.replace("_link","_active")},addActive:function(b){var a=typeof this.nodeName=="undefined"?b:this;if(a.nodeName!="IMG")a=a.getElementsByTagName("IMG")[0];a.src=a.src.replace("_link","_active");a.src=a.src.replace("_hover","_active")},addHover:function(b){var a=typeof this.nodeName=="undefined"?b:this;if(!a.src)a=a.getElementsByTagName("IMG")[0];a.src=a.src.replace("_link","_hover")},remHover:function(b){var a=typeof this.nodeName=="undefined"?b:this;if(!a.src)a=a.getElementsByTagName("IMG")[0];a.src=a.src.replace("_hover","_link")}};if(typeof jQuery.fn!="undefined"){jQuery.fn.srcMouseHover=function(){return this.each(function(){jQuery.classBehaviours.handlers.srcMouseHover.start(this)})};$(document).ready(function(){$(".srcMouseHover").srcMouseHover()})}