function sizeProductContainer(container, h) {
	if(navigator.userAgent.match("Firefox")) {
		$("#" + container).parent().css("height", h + "px");
	} else {
		$("#" + container).parent().animate({
			height: h + "px"
		});
	}
}

function sizeRetailContainer(h) {
	document.getElementById("retailers").style.height = h + "px";
}