
$(document).ready(function() {

	$('#MapL, #MapR').mouseover(function(){ 
		$(this).parent().children('.on').fadeIn(500);
	})
	.mouseout(function(){ 
		$(this).parent().children('.on').fadeOut(500);
	});
	
});
