$(function(){
	$("#menu_home, .logo").click(function(event){
		event.preventDefault();
		
		var categoryId = HOME_CATEGORY_ID;
		if(categoryId != parseInt($(".categoryId").val())) {
			showFishLoader();
			showProductViewLoader();
			MakoService.getProducts(
		      categoryId , //int categoryId
		      language , //String lang
		      function(jsonObject, statusText) {
		        showProducts(jsonObject, categoryId, 1);
		        hideFishLoader();
				hideProductViewLoader();
		    });
		}

		
	});
	
	$("#menu_about").click(function(event){
		event.preventDefault();
		$('html, body').animate({
			scrollTop: $(".about").offset().top
		}, 200);
	});
	
	$("#menu_contact").click(function(event){
		event.preventDefault();
		$('html, body').animate({
			scrollTop: $(".contact").offset().top
		}, 200);
	});
	
});
