$(document).ready(function() {
	
	$("area").mouseover(function(){
			var id = $(this).attr("id");
			$('#de_map').attr('src', '/images/bghover_'+id+'.png');
			$('#span_city').html($(this).attr('title'));
			
			var href = $(this).attr('href');
		
			
	    }).mouseout(function(){
	    	$('#de_map').attr('src', '/images/Deutschland2.png');
	    	
	});
	
	$(".staatemapping").mouseout(function(){
	    $('#de_map').attr('src', '/images/Deutschland2.png');
	    $('#span_city').html('');
	});
	
	$(".company_row").mouseover(function(){
		$(this).css('background-color', 'lightblue');
	}).mouseout(function(){
		$(this).css('background-color', 'white');
	});


});

