//preloader
jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}


//put paths to the images here
$.preloadImages("/gallery/categories/community_roll.jpg", "/gallery/categories/corporate_roll.jpg", "/gallery/categories/entertainment_roll.jpg", "/gallery/categories/government_roll.jpg", "/gallery/categories/legal_roll.jpg", "/gallery/categories/logos_roll.jpg", "/gallery/categories/medical_roll.jpg", "/gallery/categories/music_roll.jpg", "/gallery/categories/restaurant_roll.jpg", "/gallery/categories/smallbusiness_roll.jpg");


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