$(document).ready(function(){				   
	$("#ImgOne").mouseover(function()
			{
					this.src="images/menu_01_on.png";
			})
	$("#ImgOne").mouseout(function()
			{
					this.src="images/menu_01_off.png";
			})
	$("#ImgTwo").mouseover(function()
			{
					this.src="images/menu_02_on.png";
			})
	$("#ImgTwo").mouseout(function()
			{
					this.src="images/menu_02_off.png";
			})
	$("#ImgThree").mouseover(function()
			{
					this.src="images/menu_03_on.png";
			})
	$("#ImgThree").mouseout(function()
			{
					this.src="images/menu_03_off.png";
			})	
	$("#ImgFour").mouseover(function()
			{
					this.src="images/menu_04_on.png";
			})
	$("#ImgFour").mouseout(function()
			{
					this.src="images/menu_04_off.png";
			})

});