// JavaScript Document

$.preloadImages("http://metislaw.com/images/backgrounds/home.jpg", "http://metislaw.com/images/backgrounds/contact.jpg", "http://metislaw.com/images/backgrounds/about.jpg", "http://metislaw.com/images/navigation/home_over.jpg", "http://metislaw.com/images/navigation/contact_over.jpg", "http://metislaw.com/images/navigation/about_over.jpg", "http://metislaw.com/images/backgrounds/button_hover.jpg");
$(
	function()
	{
		// set up rollover
		$("img.rollover").hover(
			function()
			{
				this.src = this.src.replace("_off","_over");
			},
			function()
			{
				this.src = this.src.replace("_over","_off");
			}
		);
	}
)