// JavaScript Document
$(document).ready(function(){
	$('div.markar').hover(
		function() { 
			$("div.popBlock", this).fadeIn('medium');
		},
		function() { 
			$("div.popBlock", this).fadeOut('slow');
		});
	
	
});


