// IE - fix blikajicich backgroundu
if(($.browser.msie && $.browser.version < 7)) {
	eval("try {document.execCommand('BackgroundImageCache', false, true);} catch(e) {}");
}

var debug = false;
var canFade = true;

$(document).ready(function() {

	$("#preliminary #content").removeAttr("id");

	if(debug) {
		$(".point .in").show();
	} else {
		$(".point").mouseover(function(){
			$(".in",this).show();
		}).mouseout(function(){
			$(".in",this).hide();
		});

		/*$(".point *").mouseover(function(event) {
			$(".in", $(this).parents(".point")).show();
			event.stopPropagation();
		}).mouseout(function(event) {
			$(".point .in").hide();
			event.stopPropagation();
		});

		$(".point").mouseover( function(){
			if (canFade) {
				canFade = false;
				$(".in",this).fadeIn("normal", function() {
					canFade = true;
				});
			}
		}).mouseout( function(){
			$(".in",this).hide();
		});*/
	}

});

