// JavaScript Document
/*
----------------------------
CLASSIFICHE MYFARMINA-HOME - GALLERY
----------------------------
*/
function ClassificheTab(div){
	jQuery(div+" div.box-classifiche").find("div.classifica:first").siblings("div.classifica").css("display", "none");
	jQuery(div).find("div.tab ul.tab li a").each(function(i){
		var ClassificaNome = jQuery(this).parent("li").attr("rel");
		jQuery(this).click(function(){
			jQuery("#" + ClassificaNome).siblings("div").css("display", "none");
			jQuery("#" + ClassificaNome).css("display", "block");
			return false;
		});
	});
}

function GalleryTab(div){
	
	jQuery(div+" div.box-gallery").find("div.gallery:first").siblings("div.gallery").css("display", "none");
	jQuery(div).find("div.tab ul.tab li a").each(function(i){
		var GalleryNome = jQuery(this).parent("li").attr("rel");
		jQuery(this).click(function(){
			jQuery("#" + GalleryNome).siblings("div").css("display", "none");
			jQuery("#" + GalleryNome).css("display", "block");
			return false;
		});
	});
}

jQuery(document).ready(function() {
		ClassificheTab("#classifiche-user");
		ClassificheTab("#classifiche-pet");
		GalleryTab("#gallery-user");
		});