// JavaScript Document

$(document).ready(function(){
	if($('#mycarousel>li').length>1)
		jQuery('#mycarousel').jcarousel({
			auto:3,
			wrap:"circular"
		});
	
	$('.hm ul li').hover(
       function() {
		   $(this).find('ul:first').animate({opacity: "show"}, 300);
		   $(this).find('span:first').addClass("active");
		},
       function() {
		   $(this).find('ul:first').animate({opacity: "hide"}, 150);  	
		   $(this).find('span:first').removeClass("active");
       }
    );
	$('.promo_blocks img,img.zoom_big').zoomi();
	$('.sploiler-block').hide();
	$('.sploiler-link').click(function(e){
		$(e.currentTarget).parent().children('.sploiler-block').slideToggle('fast');
	});
	if(screen.width<=1024)
		$('head').append('<style type="text/css">'+
			'.bg_right{padding:0px}'+
			'.bg_left{width:1003px}'+
		'</style>');
});

function getNewCaptcha(){
	$('.captcha-img').attr('src','/captcha/image.php?'+Math.random());
}


