$(
	function()
	{
		// set up rollover no fade
		$("img.rollover").hover(
			function()
			{	
			
				this.src = this.src.replace("Off","On");
			
			},
			function()
			{
				this.src = this.src.replace("On","Off");
				
			}
		);
	}
)


