$(document).ready(function(){
	if ($('.browseProductContainer').size() == 0) { $('#filter').hide(); };
	$('.season').fadeTo('0','0.5');
	$('.all_tyres').fadeTo('0','1');
	$('.top_login_input').val('Логин...');
	$('.top_password_input').val('пароль...');
	$('.top_login_input').live('focus',function(){
		$(this).val('');
	});
	$('.top_password_input').live('focus',function(){
		$(this).val('');
	});

	$('#select_param').hide();
	$('.list_of_brends').hide();
	$('.product_category_content').hide();
	$('#current').fadeTo('0','0.6');

	$('.show_art_text').hide();
    $('.hide_show').toggle(
		function() {
			$(this).children('.show_art_text').slideDown();
		},
		function () {
			$(this).children('.show_art_text').slideUp();
		}
	);
	$('.show_select_par').toggle(
      function () {
        $('#select_param').slideDown();
      },
      function () {
        $('#select_param').slideUp();
      }
    );

    $('#show_manuf').toggle(
      function () {
        $('.list_of_brends').slideDown();
      },
      function () {
        $('.list_of_brends').slideUp();
      }
    );

    $('.prod_cat_header').toggle(
      function () {
        $('.product_category_content').slideDown();
      },
      function () {
        $('.product_category_content').slideUp();
      }
    );

	
$('.season').live('click',function() {
			$('.browse_product').addClass('hidden_sezon');
			$('.season').fadeTo('3000','0.5');
			
			var season = $(this).text();
				if (season != "Все") {
					$(this).fadeTo('3000','1');
					$(".sezon_name:contains('"+season+"')").parents('.browse_product').removeClass('hidden_sezon');
				}
				else {
					$('.browse_product').removeClass('hidden_sezon');
					$('.season').fadeTo('3000','0.5');
					$(this).fadeTo('3000','1');
				};

});

var brends_array = [];
var k = 0;
	$('.manufacturer_name').each(function(){
		var temp_name = $(this).text();
		brends_array[k] = temp_name;
		k = k+1;
	});
	brends_array[k] = 'Все';
	brends_array.sort();
	array_unique(brends_array);
	array_unique(brends_array);
	for (var i = 0; i < brends_array.length; i++) {
		$('.brend_filter').append("<li class='brend_filter_li'><h4>"+brends_array[i]+"</h4></li>");
   };
$('.brend_filter_li > h4').live('click',function() {
	$('.browse_product').addClass('hidden_brends');
	$('.brend_filter_li > h4').css('color','black');
	$(this).css('color','red');
	var brends = $(this).text();
	if (brends != "Все") {
		$(".manufacturer_name:contains('"+brends+"')").parents('.browse_product').removeClass('hidden_brends');
	}
	else 
	{
		$('.browse_product').removeClass('hidden_brends');
	}
});
	$('.brend_filter_li > h4:last').css('color','red');
});
function array_unique( array ) {
	var p, i, j;
	for(i = array.length; i;){
		for(p = --i; p > 0;){
			if(array[i] === array[--p]){
				for(j = p; --p && array[i] === array[p];);
				i -= array.splice(p + 1, j - p).length;
			}
		}
	}

	return true;
};
