$(document).ready(function() {
	$('#otherLocations').css('display', 'none');
	
	$('#eventLocations p a').click(function(e) {
		e.preventDefault();
		$('#otherLocations').slideToggle(500);
		$(this).toggleClass("selected");
		if ($(this).is(".selected")) {
			$(this).text("Nascondi gli altri luoghi");
			$('html, body').animate({scrollTop:490}, 500);
		} else {
			$(this).text("Vedi gli altri luoghi");
			$('html, body').animate({scrollTop:190}, 500);
		}
	});
	
	$("#requestInfo").validate();	

	
});
