function showNextRecommend(toHide, toShow) {
  	$("#product"+toHide).fadeOut(1000);
  	$("#product"+toShow).fadeIn(1000);
}

function showRecommend(toShow) {
  	var products = $('.products').find("div.prodContener");
  	var visible = products.filter(":visible").eq(0);
   	visible.fadeOut(1000);	 
  	$("#product"+toShow).fadeIn(1000);
}

function changeRecommend()
{
  	var photos = $('.products').find("div.prodContener");
	var visible = photos.filter(":visible").eq(0);
	var next = (visible.next().length > 0 ? visible.next() : photos.eq(0));
	visible.css({ zIndex: 1 });
	next.css({ zIndex: 0 });
	visible.fadeOut(1000);
	next.fadeIn(1000);
}

function showProducts() {
	document.getElementById("unfold").style.display = 'none';  
  	document.getElementById("fold").style.display = 'block';  
  	document.getElementById("productsList").style.display = 'block';  
}

function hideProducts() {
	document.getElementById("unfold").style.display = 'block';  
  	document.getElementById("fold").style.display = 'none';  
  	document.getElementById("productsList").style.display = 'none';  
}

function showProductsList() {
	document.getElementById("productsList").style.display = 'block';
}

function hideProductsList() {
  	document.getElementById("productsList").style.display = 'none';
}

function showMap() {
	document.getElementById("bigMap").style.display = 'block';    
}
function hideMap() {
	document.getElementById("bigMap").style.display = 'none';    
}
