$(document).ready(function(){
	$('#menu > dt span').css({opacity:'0'});
	$('#menu > dd').css({opacity:'0.75'})
	$('#menu > dt a').hover(function(){
		$(this).parent().find('span').stop().animate({opacity:'0.75'},600)							   
	}, function(){
		$(this).parent().find('span').stop().animate({opacity:'0'},600)							   
	})
	//gallery 
	$("#gallery1").jCarouselLite({
			btnNext: ".next",
		 	btnPrev: ".prev",
       		mouseWheel: true,
        	vertical: true,
        	circular: true,
			visible: 3,
			speed: 600,
			easing: 'easeOutCirc'
	});
	$('#gallery1 span, .img_act, .button1 span, .partners figure span').css({opacity:'0'});
	$('#gallery1 a, .partners figure a').hover(function(){
		$(this).find('span').stop().animate({opacity:'0.15'})						   
	}, function(){
		$(this).find('span').stop().animate({opacity:'0'})						   
	})
	$('.button1').hover(function(){
		$(this).find('span').stop().animate({opacity:'1'})						   
	}, function(){
		$(this).find('span').stop().animate({opacity:'0'})						   
	})
	$('.prev, .next').hover(function(){
		$(this).find('.img_act').stop().animate({opacity:'1'})						   
	}, function(){
		$(this).find('.img_act').stop().animate({opacity:'0'})						   
	})
	 tabs.init();
	 $('#ContactForm').forms({
		ownerEmail:'ya.za0za@yandex.ru'
	})
})

