$(document).ready(function(){
	
	$(function() {
		$("a[rel='_blank']").attr("target","_blank");				
	});
		
	// INIZIO FUNZIONE GESTIONE MENU NAVIGAZIONE
	$(function() {
		$('#menu ul ul').hide();
		$('li.current').parent().show();
	    //$("#menu ul li a.toggler:last").css({"border-bottom":"none"});	
		$('a.toggler').click(function(){
			if($(this).parent().find('ul').is(':visible')) {
				$(this).parent().find('ul').slideUp();			
			} else {
				$('#menu ul ul:visible').slideUp();
				$(this).parent().find('ul').slideDown();
			}
			return false
		});	
		$('#menu ul ul li').find('a').click(function(){
			$('li.current').removeClass('current');
			$(this).parent().addClass('current');
		});
	});
	// FINE FUNZIONE GESTIONE MENU NAVIGAZIONE
	
	// INIZIO FUNZIONE GESTIONE ROLLOVER SU FORMS
	$('.textinput, .textarea, .select').each(function() {
			var initBorderColor = $(this).css("borderColor");
			$(this).focus(
				function() {
					$(this).css({'border-color':'#8b8b8b'});
			});
			$(this).blur(
				function() {
					$(this).css({'border-color': initBorderColor});
			});
	});
	// FINE FUNZIONE GESTIONE ROLLOVER SU FORMS
	
});