$(document).ready(function(){

$('.menu-content ul li a img').mouseover(function(){
	  $("#"+$(this).attr("id")).attr('src','/images/'+$(this).attr("id")+'_m1.png');
    }).mouseout(function(){
      $("#"+$(this).attr("id")).attr('src','/images/'+$(this).attr("id")+'_m0.png');
    });

$("#top-container a img[id^='menu']").mouseover(function(){
	  $("#"+$(this).attr("id")).attr('src','/images/'+$(this).attr("id")+'-1.png');
    }).mouseout(function(){
      $("#"+$(this).attr("id")).attr('src','/images/'+$(this).attr("id")+'-0.png');
    });
	
});

Shadowbox.loadSkin('classic', '/scripts/shadowboxskin');
window.onload = Shadowbox.init;
