function preloadImages() {
	//preload the hover images
	$.preloadImages("/templates/wad_content/contentwindow.gif");
}

function init() {
	//Set up the onHover image rollover for the ITR logo
	$('#footer #copyright img').hover(function() {
		$(this).attr('src', '/templates/wad_content/ITR_logo_onhover.png');
	}, function() {
		$(this).attr('src', '/templates/wad_content/ITR_logo.png');
	});

	$('.nohover').hover(function() {
		$(this).removeClass('nohover');
	}, function () {
		$(this).addClass('nohover');
	});
	
	preloadImages();
}

$(document).ready(init);
