function hideDiscont() {
	$(".discontBox").hide('slow');
}
$(document).ready(function() {
	
	if ( ! $.cookie('homediscount') && window.location.pathname == '/' || ! $.cookie('noflatdiscount') && window.location.pathname == '/nebytove-prostory.html' 
      || ! $.cookie('projectdiscount') && window.location.pathname == '/o-projektu/o-projektu.html' ) {
	    $(".discontBox").show('slow');
	    $(".discontBox .discClose").click = hideDiscont;
	    if (window.location.pathname == '/') {
	        $.cookie('homediscount', true);
	    }
	    if (window.location.pathname == '/nebytove-prostory.html') {
	        $.cookie('noflatdiscount', true);
	    }
	    if (window.location.pathname == '/o-projektu/o-projektu.html') {
	        $.cookie('projectdiscount', true);
	    }
	}

});
