﻿$(window).load(function() {
	$('#homeslider').nivoSlider({directionNavHide:false, effect:'fade'});
});
$(document).ready(function() {
	$('#mycarousel1').jcarousel({scroll:3});
	$('#mycarousel2').jcarousel({scroll:3});

	// show all active
	var $allActive = $('.menu_left').find('.active');
	$allActive.parents('ul').show();
	$allActive.parent().children('ul').show();
	$allActive.parents('li').children('span').addClass('open');
	$allActive.parents('li').children('a').addClass('active');
	// set empty when nothing to slide
	$('.menu_left span').each(function() {
		if($(this).parent().children('ul').size() == 0) {
			$(this).addClass('empty');
		}
	});
	// left menu
	$('.menu_left span').click(function() {
		var $childUls = $(this).parent().children('ul');
		if ($childUls.size() > 0) {
			if ($(this).hasClass('open')) {
					$(this).removeClass('open');
					$childUls.slideUp('slow', function() {
						$(this).parent().find('ul').hide();
						$(this).parent().find('span').removeClass('open');
					});
			} else {
				$(this).addClass('open');
				$childUls.slideDown('slow');
			}
		}
	});

	// sales tabs
	var $sale_tabs = $('.tab_headers');
	if ($sale_tabs.size() > 0) {
		$sale_tabs.tabs('div.content', {
			initialIndex: -1
		});
	}

	// product pictures switch
	var $imgs = $(".img-sec li img");
        $imgs.click(function() {
		var $k = $imgs.index($(this));
		$(".brend-img-des > a img").hide();
		$(".brend-img-des > a img").eq($k).show();
		return false;
	});

	// product pictures lightbox
	var $lightboxProducts = $('a.lbproduct[href!=""]');
	if ($lightboxProducts.size() > 0) {
		$lightboxProducts.lightBox();
	}  

	// search form field
	$('input#ajaxSearch_input').focus(function () {
		if ($(this).attr('value') == 'Поиск по сайту') {
			$(this).attr('value', '');
		}
	});
	$('input#ajaxSearch_input').blur(function () {
		if ($(this).attr('value') == '') {
			$(this).attr('value', 'Поиск по сайту');	
		}
	});
});
