var $tv;
$(document).ready(function(){
	/*if ($("li.home-page").hasClass('active')){
		$('.hotel').fadeIn('slow');
	};*/
	$(".fancybox").fancybox({'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic','padding':'2'});
	
	$tv = $(".banner-wrapper, .terek_gal");
	$("a#flash-show").click(function(){$(".flash-frame").show();$(this).hide();return false;});
	swap();
});

function swap(){
	var $tmp =$tv.find("img:first");
	$tmp.fadeOut('slow');
	$tv.append($tmp);
	$tv.find("img:first").fadeIn("slow");
	setTimeout(swap,8000);
}
