$(document).ready(function(){
	//$('body').append('<div id="shutdown"><div id="shading" style="opacity:0.7;filter:alpha(opacity=70)"></div><div id="innerdiv" style="width:726px;height:676px;border:1px solid #CFCFCF;background:#FFF"><div style="font-size:12px;font-family:verdana;position:absolute;float:left;top:7px;right:7px;width:200px;cursor:pointer;color:#000;text-align:right" title="Zavřít - Close">Zavřít / Close <span style="font-size:18px">&times;</span></div><br /><br /><div id="video1" style="overflow:hidden;"><a href="http://www.macromedia.com/go/getflashplayer">Pro zobrazení je nutný flash player.</a></div><script type="text/javascript" src="js/swfobject.js"></script><script type="text/javascript">var s1 = new SWFObject("mediaplayer.swf","mediaplayer","696","576","8");s1.addParam("allowfullscreen","true");s1.addVariable("width","696");s1.addVariable("height","576");s1.addVariable("image","media/image.jpg");s1.addVariable("file","media/Kunin_Smetany.flv");s1.addVariable("autostart","false");s1.addVariable("showstop","true");s1.write("video1");</script></div></div>');
	$('body').append('<div id="shutdown"><div id="shading" style="opacity:0.7;filter:alpha(opacity=70)"></div><div id="innerdiv" style="width:806px;height:738px;border:1px solid #CFCFCF;background:#FFF"><div style="font-size:11px;font-family:verdana;position:absolute;float:left;top:-6px;right:7px;width:300px;cursor:pointer;color:#000;text-align:right" title="Zavřít - Close">Zavřít / Close <span style="font-size:18px">&times;</span></div><img src="media/kunin_oznameni.jpg"  /></div></div>');
	var shut = $('#shutdown');
	var iner = $('#innerdiv');
	var shad = $('#shading');
	var width = iner.width();
	var height = iner.height();
	var win_width = $(window).width();
	var win_height = $(window).height();
	var win_scroll = $(window).scrollTop();
	var top = Math.round( ( win_height - height ) / 2 ) + win_scroll ;
	var left = Math.round( ( win_width - width ) / 2 );
	shad.css({
		'display' : 'none',
		'position' : 'absolute',
		'z-index' : 1000,
		'border' : 'none',
		'background' : '#FCFCFC',
		'width' : '100%',
		'height' : '100%',
		'top' : '0px',
		'left' : '0px'
	});
	iner.css({
		'display' : 'none',
		'position' : 'absolute',
		'z-index' : 1000,
		'top' : '20px',
		'height' : '626px',
		'left' : left + 'px'
	});
	shut.css({
		'width' : '100%',
		'height' : '100%',
		'top' : '0px',
		'left' : left + 'px'
	});

	shut.click(function(){
			shad.remove();
			iner.remove();
			shut.remove();
	});
	iner.fadeIn(500);
	shad.fadeIn(500);
	shad.click(function(){
		$(this).fadeOut(500,function(){
			shad.remove();
			iner.remove();
			shut.remove();
		});
	});
});

