﻿/***************************/
//@Author of Popup portion of code: Adrian "yEnS" Mato Gondelle
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/



//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
	 $(".img-swap").hover(
          function(){this.src = this.src.replace("_off","_on");},
          function(){this.src = this.src.replace("_on","_off");
     });
	//LOADING POPUP
	//Click the button event!
	$(".menuitem").bind({
	mouseenter : function () {
		$(this).css("background-image", "url(/images/menu/"+menuimage+"o"+".jpg)");
	},
	mouseleave : function () {
		$(this).css("background-image", "url(/images/menu/"+menuimage+".jpg)");
	}
	});
});
