$(document).ready(function() { 
	
	$(function() {
		$('img[hover]').hover(function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
		}, function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
		});
	});


	// identify photo
		$('.hovermap').live("mouseover", function(){ 
			$('#techmapoverview').attr('src', $(this).attr('hover'));
		});

});
