$(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:609px;height:408px;border:1px solid #A6B3B6"><div style="position:absolute;float:left;top:375px;left:575px;width:25px;height:25px;cursor:pointer;" title="Zavřít - Close"></div><img src="images/popup-novinka-smetana.jpg" alt="Nová smetana z Kunína - s kousky zeleniny a voňavými bylinkami" title="Nová smetana z Kunína - s kousky zeleniny a voňavými bylinkami" /></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' : '110px',
		'height' : '408px',
		'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();
		});
	});	
});
