$(document).ready(function() {
	resize_frame_produits();
});

$(window).resize(function() {
	resize_frame_produits();
});

function resize_frame_produits() {
	if ($("#frame_produits")) {		
		frame_width = $(window).width() - 170;
		frame_height = $(window).height() - 160;				
		$("#frame_produits").css("width",frame_width+"px");
		$("#frame_produits").css("height",frame_height+"px");
	}
}
