// JavaScript Document
//some random lines to show product list
$(document).ready( function () {
    $(".brandListName").toggle(function() {
        var augstums = 0;
        $(this).parent().find(".brandListName span").html('View Less >>');
        var hideThumbs = $(this).parent().find(".brandListThumbs");
        $(this).parent().find(".brandListProducts > div").each(function(index) {
            augstums = $(this).height() + 16 + augstums;
        });
        
        hideThumbs.hide('fast', function(){
            hideThumbs.css({'opacity':'0', 'visibility': 'hidden'});
        });
        $(this).parent().find(".brandListProducts").animate({"height": augstums+"px"}, "slow", function(){
        });
    }, function() {
        $(this).parent().find(".brandListName span").html('View More >>');
        var hideThumbs = $(this).parent().find(".brandListThumbs");
        hideThumbs.show('fast', function(){
            hideThumbs.css({'visibility': 'visible'});
        });
        $(this).parent().find(".brandListProducts").animate({"height": "10px"}, "slow", function(){
            hideThumbs.animate({
                opacity: 1
            }, 300);
        });
        
    });
	
});
