$(document).ready(function(){
    $('.product-list a').bind('click', function(){
        var index = $('.product-list a').index(this);
        $('.product-list a').not(':eq('+index+')').parent().removeClass('active');
        $(this).parent().addClass('active')
        $('.big-product').not(':eq('+index+')').hide();
        $('.big-product').filter(':eq('+index+')').show();
        return false;
    });
    
    $('.form select#take').each(function(){
        var hash = window.location.hash;
            hash = hash.replace(/^.*#/, '');
        
        if($('.'+hash, this).size()>0 && hash != ''){
            $('.'+hash, this).attr('selected', true);
        }
    });
});

