// Global JavaScripts


// this actually does the rollovers - give an image class="rollover" and have images named _off and _on
// extension etc doesn't matter home_off.jpg and home_on.gif work, as well as bob_off.gif and bob_on.gif
//$.preloadImages("ok_on.gif", "cancel_on.gif");
$(
	function()
	{
		// set up rollover
		$("img.rollover").hover(
			function()
			{
				this.src = this.src.replace("_off","_on");
			},
			function()
			{
				this.src = this.src.replace("_on","_off");
			}
		);
	}
)
