$(document).ready(function(){
	//Play button background change
	$(".ukazkaCont div")
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$("#"+this.id+" a span.play").stop().animate(
			{backgroundPosition:"(0 -69px)"}, 
			{duration: 0})
		})
		.mouseout(function(){
			$("#"+this.id+" a span").stop().animate(
			{backgroundPosition:"(0 0px)"}, 
			{duration: 0})
		})
	
	//Slideshow
	$('#banner').cycle({
		fx: 'scrollUp,scrollDown,scrollLeft,scrollRight'
	});
	
	//Popup windows settingss
	$("#pravaUkazka a").popupWindow({
		width:900,
		height:600,		 
		centerBrowser:1,
		resiseable:0
	});
	
	$("#levaUkazka a").popupWindow({
		width:700,
		height:550,
		centerBrowser:1 
	});


});
