// JavaScript Document

$.preloadImages("http://www.globalenergysystems.co.uk/images/boxes/home/housing_off.png", "http://www.globalenergysystems.co.uk/images/boxes/home/pub_off.png", "http://www.globalenergysystems.co.uk/images/boxes/home/res_off.png", "http://www.globalenergysystems.co.uk/images/boxes/home/com_off.png", "http://www.globalenergysystems.co.uk/images/boxes/home/eco_off.png", "http://www.globalenergysystems.co.uk/images/boxes/home/switch_off.png", "http://www.globalenergysystems.co.uk/images/boxes/home/savings_off.png", "http://www.globalenergysystems.co.uk/images/boxes/home/simpleinstall_off.png");

$(
	function()
	{
		// set up rollover
		$("img.rollover").hover(
			function()
			{
				this.src = this.src.replace("_over","_off");
			},
			function()
			{
				this.src = this.src.replace("_off","_over");
			}
		);
	}
)

$(
	function()
	{
		// set up rollover
		$("input.rollover").hover(
			function()
			{
				this.src = this.src.replace("_off","_over");
			},
			function()
			{
				this.src = this.src.replace("_over","_off");
			}
		);
	}
)
