$(document).ready(function() {
	//arcivescovo box
	$('#arciSlider').hover(function () {
		$(this).animate({top: '-15'}, 500);
	},
	function () {
		$(this).stop(true).animate({top: '-170'}, 500);
	});
	
	//Menu principale a sx
	$('.menu ul ul').hide();
	var plus = $('<span>').append('[+]');
	var minus = $('<span>').append('[&minus;]');
	
	$('.menu li').children('ul').parent().prepend(plus);
	
	$('.menu li').live('mouseenter', function(e) {
		$(this).stop().children('span').show('slow');
	});
	
	$('.menu li span').live('click', function() {
		if ($(this).html() == plus.html()) {
			$(this).parent().children('ul').slideDown('fast');
			$(this).html(minus.html());
		}
		else if ($(this).html() == minus.html()) {
			var el = $(this);
			el.parent().find('ul').slideUp('slow', function() {
				el.html(plus.html());
				el.parent().find('span:contains("' + minus.html() + '")').html(plus.html());
				el.parent().find('ul span').hide('slow');
				el.hide('slow');
			});
		}
	});
	
	$('#frm_access').submit(function() {
		$.cookie("a_rel", Math.random(99999999));
	});
	
	//Menu cookie set
    $('.menu a').click(function(){
    	$.cookie("a_rel", Math.random(99999999));
    	if ($(this).attr('href').indexOf('logout') == -1) {
            $.cookie("a_rel", $(this).attr('rel'));
    	}
    });
    
    //Menu cookie read e view tree items
    $('.menu a').each(function(i) {
            $(this).attr('rel', ('r' + i));
            if($.cookie("a_rel") == ('r' + i)) {
                $(this).addClass('selected');
                $(this).parents().children('span').trigger('click').show();
                $.cookie("a_rel", Math.random(99999999));
            }
    });
    
	//Menu area privata
	$('#adm_menu li').children('ul').parent().children('a').append('<span>&raquo;</span>');
	
	$('#adm_menu li').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
 });
