$(document).ready(function() {
	$(".selector:eq(1) > span").css('display', 'none');
	//$('#advs-genere').css("background-image", "url(/img/it/h3g/html/strelica-gore.gif)");
	$(".selcontent:eq(1)").hide();
    $("a.scegli").click(function() {
	    	if ($(this).is(".active")) {
    			$(this).removeClass('active');
    			$(this).siblings('span').css('display', 'none');
				$(this).css("background-image", "url(/img/it/h3g/html/strelica-dole.gif)");
				$(".selcontent").slideUp('slow');
	    		return false;
	    	}else{
	    		$(".selcontent:visible").slideUp("slow");
	    		$('a.scegli').removeClass('active');
	    		$('a.scegli').css("background-image", "url(/img/it/h3g/html/strelica-dole.gif)");
	    		$(this).addClass('active');
	    		$(this).css("background-image", "url(/img/it/h3g/html/strelica-gore.gif)");
	    		$(this).parents().next(".selcontent").slideDown();
	    		$(".selector > span").css('display', 'none');
	    		$(this).siblings('span').css('display', 'block');
	    		return false;
	    	}
    	})
});    	

