function translatePage() {
	if ($('#google_tl').val().length > 0) {
		$('#google_translate').submit();
	}
}

function init() {
	//Set up the onHover image rollover for the ITR logo
	$('#footer #copyright img').hover(function() {
		$(this).attr('src', '/templates/eva03_page/images/itr_logo_up.gif');
	}, function() {
		$(this).attr('src', '/templates/eva03_page/images/itr_logo.gif');
	});

	$('#map div').hover(function() {
		$(this).removeClass('nohover');
	}, function() {
		$(this).addClass('nohover');
	});
	
	$('#google_tl').change(translatePage);
}

$(document).ready(init);
