$(function(){
	
//	наведение на иконки соц.сетей
	var SOCIAL = $('.social ul li');
	SOCIAL.find('a').hover(function(){
		$(this).parent('li').stop().animate({'opacity':'1 !important'},100);
	}, function(){
		SOCIAL.stop().animate({'opacity':'0.4'},500);
	});
	
	$('#mycarousel img').bind('click',function(){
		$(location).attr('href','/gallery/'+$(this).attr('id')+'.html');
	});
});
