var mod=''; function ScrollUp(divid) { $(window).scrollTo( $("#"+divid), 800 ); } function Goto(href) { window.location.href = href; } $(document).ready(function(){ $('div[id*="menu-"]').click(function() { mod = $(this).attr('id'); mod = mod.replace("menu-",""); Goto("./?m="+mod); }); $('#page-top-home').click(function() { Goto("./"); }); $('div[id*="menu-"]').mouseover(function() { currbtn = $(this).css('background-image'); selpos = currbtn.indexOf("_sel.jpg"); if (selpos==-1) { newbtn = currbtn.replace(".jpg", "_sel.jpg"); $(this).css('background-image',newbtn); } }); $('div[id*="menu-"]').mouseout(function() { currid = $(this).attr('id').replace("menu-",""); currid = currid.replace("-sel",""); if (currid!=mod) { currbtn = $(this).css('background-image'); newbtn = currbtn.replace("_sel.jpg", ".jpg"); $(this).css('background-image',newbtn); } }); });