jQuery(document).ready(function($){
	$(function() {
		adjustaHome($(this).width());
	    $(window).resize(function() {
	    	adjustaHome($(this).width());
	    });
	});
	function adjustaHome(width) {
		width = parseInt(width);
	    if (width < 1360) {
	    	$(".phome UL LI.prod").css("width", "100%");
	    	$(".produtos_secao UL LI.prod").css("width", "33.33%");
	    	$("#layout2c UL LI.prod").css("width", "33.33%");
	    } else if ((width >= 1360) && (width < 1800)) {
	    	$(".phome UL LI.prod").css("width", "50%");
	    	$(".produtos_secao UL LI.prod").css("width", "25%");
	    	$("#layout2c UL LI.prod").css("width", "25%");
	    } else {
	    	$(".phome UL LI.prod").css("width", "50%");
	    	$(".produtos_secao UL LI.prod").css("width", "16.66%");
	    	$("#layout2c UL LI.prod").css("width", "16.66%");
	    }
	}
});
