jQuery(document).ready(function($) {

//alert($(window).height());
	
	$('ul#mainslider').innerfade({  
		speed: 2000,  //скорость растворения изображения
		timeout: 4000, //время показа одного изображения
		type: 'sequence', //отображать по порядку
		containerheight: '372px' // высота блока
	});

	$("#verticalmenu .page_item").hover(
		function(e){ $("ul", this).fadeIn("fast"); 
		var offset = $("ul", this).offset();

		if ((offset.top + $("ul", this).height()) > $(window).height()){
			var top = 35 - $("ul", this).height();
			$("ul", this).attr("style","top: " + top + "px;display: block;");
		} else {
		
		}

		
		},
		function(){ $("ul", this).fadeOut("fast"); }
	);
	
	//$("#verticalmenu .page_item ul").fadeOut("fast");
	
	
    $("#verticalmenu .page_item").bind("mouseover", function(event) {
        $(this).attr("style", "background:#e3e6d1 none repeat scroll 0 0;");
    } );

    $("#verticalmenu .page_item").bind("mouseout", function(event) {
        $(this).attr("style", "background:#ECF0D8 none repeat scroll 0 0;");
	  } );     

	var lightbox2 = $(".seriesLightbox").ariaLightbox({
		imageArray: [],
		altText: "alt",
		descText: "title",
		useDimmer: true,
		pos: "auto",
		title: "Bildergallerie",
        titleText: "Фотогалерея Filstom Cliniq",
		em: false
	});		
			
});  
