// JavaScript Document

check=1;



$(document).ready(

	function(){

	

		$("#intestazioneInterna span").click(

			function () {

				self.location.href="../index.php"

			}

		);

		

		$("#comandi img").click(

			function () {

				if (check){

					$("#comandi img").css("margin-top", "-21px");

					$(".regular").hide();

					$(".extra").show();

					check=0;

					return false;

				}

				else{

					$("#comandi img").css("margin-top", "0");

					$(".extra").hide();

					$(".regular").show();

					check=1;

					return false;

				}

			}

		),

		

		$(".comandiMap").click(

			function () {

				if (check){

					$("#comandiMap img").css("margin-top", "-21px");

					$(".regular").hide();

					$(".extra").show();

					check=0;

					risetta();

					return false;

				}

				else{

					$("#comandiMap img").css("margin-top", "0");

					$(".extra").hide();

					$(".regular").show();

					check=1;

					return false;

				}

			}

		),

		

		$(".text").click(

			function () {

				$(this).attr("value", "");

			}

		);

		

		$(".text").blur(

			function () {
				if ($(this).attr("value")=="")
					$(this).attr("value", $(this).attr("default"));
			}

		);

	}

);