// JavaScript Document

$.preloadImages("http://thefreshidea.com/test/images/backgrounds/main_temp.jpg");
$(
	function()
	{
		// set up rollover
		$("img.rollover").hover(
			function()
			{
				this.src = this.src.replace("_off","_over");
			},
			function()
			{
				this.src = this.src.replace("_over","_off");
			}
		);
	}
)
