
$(document).ready(function(){

	$('iframe').attr('allowTransparency', 'true');
	//исправляем белые iframe-ы, когда они еще только грузятся
	//сначала скрываем их, а на событие "iframe загружен" навешиваем их появление
	if($.browser.mozilla)
	{
		$('iframe').css('visibility', 'hidden').load(function(){
			$(this).css('visibility', '');
		});
	}

    //content rotation

	featuredcontentglider.init({
	    gliderid: "galleryPictures",
	    contentclass: "glidecontent",
	    togglerid: "p-select",
	    remotecontent: "",
	    selected: 0,
	    persiststate: false,
	    speed: 500,
	    direction: "downup",
	    autorotate: true,
	    autorotateconfig: [3000, 2]
	});

	$('#watchVideo').click(rotatePictureVideo);
	$('#backToGallery').click(rotatePictureVideo);
	
	if (document.location.hash == "#video")
	    rotatePictureVideo();

	function rotatePictureVideo() {
	    $('div.gallery').toggle();
	    $('div.video').toggle();
	}
	
});
