// JavaScript Document

$(document).ready(function(){

	$('#overlay').css('opacity','0.5');					   
	marqueeInit({
		uniqueid: 'run_str',
		style: {
				'position':'absolute'
				},
		inc: 1, //speed - pixel increment for each iteration of this marquee's movement
		mouse: 'false', //mouseover behavior ('pause' 'cursor driven' or false)
		moveatleast: 40
	});
	jQuery('ul.sf-menu').superfish();
	$(".sf-menu").css({"margin-left":((900-$(".sf-menu").width())/2)+"px","margin-right":((900-$(".sf-menu").width())/2)+"px"});
	$('#photos .photo img').click(function(){
	//$(this).parent().parent().find('a').lightbox();	
		$(".image_litebox").lightbox();	
	});
/*Галерея*/
	$(".pic").hover(
			function(){
				$(this).addClass("selected");
			},
			function(){
				$(this).removeClass("selected");
			}
		)
		$(".pic a").click(
			function(){
			src = $(this).attr("href");
			$("#gallery .big img").fadeOut(300,function(){
									$(this).attr("src",src).fadeIn(1800);
									});
			$(".pic").each(function(){
				$(this).removeClass("active");
			})
			$(this).parent().addClass("active");
			return false;
			}
		)
/*конец галереи*/
});

