function toggleMoreProducts(num) {
	var thediv = document.getElementById('productsHide_' + num);
	
	if(thediv.style.display == '') {
		thediv.style.display = 'none';
	} else {
		thediv.style.display = '';
	}
}
