$(document).ready(function(){
			   
							  $('div[name=pro_con]').each(function(){
			  
			  $(this).hide();
			  	
			  });
			   
							   
			   $('div#pro_con').hide();
    
	            $('div.products_conteiner_price_asc').show();
	
	
    $('select[name=_sortby]').change(function(){
        var sort =  $('select[name=_sortfirst]').val();
        switch ($(this).val()) {
            case 'price':
			   $('div#pro_con').hide();
                $('div.products_conteiner_price_'+sort).show();
               
                break;
            case 'stars':
                $('div#pro_con').hide();
                $('div.products_conteiner_stars_'+sort).show();
                break;
        }
    })
	
	    $('select[name=_sortfirst]').change(function(){
        var typ = $('select[name=_sortby]').val();
        switch ($(this).val()) {
            case 'asc':
                $('div#pro_con').hide();
                $('div.products_conteiner_'+typ+'_asc').show();
                break;
            case 'desc':
                $('div#pro_con').hide();
                $('div.products_conteiner_'+typ+'_desc').show();
                break;
        }
    })


})
