function obrazek(cesta) {
	window.open('/obrazek.php?img=' + cesta,'obrazekiscs','width=200,height=200');
}

function portfolio_open() {
	window.open('http://www.ifondy.cz/sis.php','ifondy','height=480,width=640,scrollbars=yes,resizable=yes, status=yes,help=yes,backgroundcolor=white' );
}




//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;
//loading popup with jQuery magic!
function loadPopup(){
	//loads popup only if it is disabled
	if(popupStatus==0){
		$("#backgroundPopup").css({"opacity": "0.7"});
		$("#backgroundPopup").fadeIn("slow");
		$("#popupContact").fadeIn("slow");
		popupStatus = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopup(){
	//disables popup only if it is enabled
	if(popupStatus==1){
		$("#backgroundPopup").fadeOut("slow");
		$("#popupContact").fadeOut("slow");
		popupStatus = 0;
	}
}


$(document).ready(function(){

	$('embed#flash_prostrednifd').css({'z-index': '1', 'display': 'block'}).attr({'wmode': 'transparent'});
	loadPopup();
	//disable 
	$("#popupContactClose, #backgroundPopup").click(function(){disablePopup();});
	$(document).keypress(function(e){if(e.keyCode==27 && popupStatus==1){disablePopup();}});

});
