
jQuery(window).bind('load',function(){jQuery('.top_menu_item img').mouseover(function(e)
{var path=jQuery(e.currentTarget).attr("src");if(path.indexOf("_hover")<0)
{jQuery(e.currentTarget).attr("oldpath",path);path=path.replace(".jpg","_hover.jpg")
jQuery(e.currentTarget).attr("src",path);}})
jQuery('.top_menu_item img').mouseout(function(e)
{var path=jQuery(e.currentTarget).attr("oldpath");jQuery(e.currentTarget).attr("src",path);})});
