  // * * * * * * * *
$(document).ready(function($) {
 // * * * * * * * *
 $('.hidden').hide();
 // * * * * * * * *
	$("a[href*='http://']:not([href*='"+location.hostname+"'])").attr('target','_blank').attr('rel','nofollow');
 // * * * * * * * *
$('.unhide').click(function(){
 $(this).nextAll(' .hidden').fadeIn();
 $(this).remove();
});
 // * * * * * * * *
$('#menu-nav li:has(ul) > a').addClass('expand');
 // * * * * * * * *
$('#promo').css('background-image','url(assets/images/rotator-1.jpg)');
// * * * * * * * *
 // * * * * * * * *
 var _FORM = '#content form';
 if ($(_FORM).length) {
 // * * * * * * * *
 $(_FORM).ajaxContactForm( '', {
 language: 'it',
 extraValues: {},
 method: 'POST',
	falseMessageFunc:	function(form, language) {
		switch (language) {
			default:
				msg = 'Attenzione, non tutti i campi sono stati riempiti correttamente.';
				break;
		}
	$.gritter.add({
			title: '[ ! ]',
			text: msg,
			sticky: false,
			class_name: 'KO'
		});
		$(_FORM).scrollTo();
	}
});
};
// * * * * * * * *
}); // END READY
 // * * * * * * * *
 // * * * * * * * *

 // * * * * * * * *
$.fn.scrollTo = function() {
 $('body').animate({scrollTop: $(this).offset().width}, 1000, 'linear');
}

