$(function() {

	$('img.hmi').hover(
		function() {
			newsrc = this.src.replace(/nav_/, 'on/nav_');
			this.src = newsrc;
		},
		function() {
			newsrc = this.src.replace(/on\/nav_/, 'nav_');
			this.src = newsrc;
		}
	);
	
	var fih = new Image();
	fih.src = '/t/default/images/footer_content_hover.png';
	
	$('#footerhover').hover(
		function() {
			$('#footerimage')[0].src = '/t/default/images/footer_content_hover.png';
		},
		function() {
			$('#footerimage')[0].src = '/t/default/images/footer_content.png';
		}
	);

});
