$(document).ready(function() {
	
	$("#click_link").click(function(){
		$("#mapa-flash").animate({"height": 470}, "slow");
		$("#flash").hide("slow");
		$(this).hide("slow");
	});

	$("#hide_link").click(function(){
		$("#mapa-flash").animate({"height": 183}, "slow");
		$("#flash").show("slow");
		$("#click_link").show("slow");
	});
	
	$('.change').focus(function() {
	if (this.value == this.defaultValue) {
	this.value = ''; }});
	$('.change').blur(function() {
	if (this.value == '') {
	this.value = this.defaultValue; }});
	
   $("#main table").find("tr:first").addClass("head");
   $("#termini table").find("tr:odd").addClass("odd");   
	
});

/*
 * Tooltip script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */
 

