function init() {
	//Set up the onHover image rollover for the ITR logo
	$('#footer #designbyitr #itr_logo').hover(function() {
		$(this).attr('src', '/templates/eva02_page/images/itr_logo_hover.gif');
	}, function() {
		$(this).attr('src', '/templates/eva02_page/images/itr_logo.gif');
	});
}

$(document).ready(init);
