$(function() {	$('.ui-state-highlight').fadeIn(500).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500);	$('.error').fadeIn(500).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500);		/* LOGIN */	$("#login_box input:first").focus();		$("#login_box button").button({		icons: {			primary: 'ui-icon-person'		}	});		/* LOGOUT */	$(".btn_logout").button({		icons: {			primary: 'ui-icon-power'		}	});		/* PROFILO */	$("#mappa_profilo").gMap({		markers: [			{	address: $('#indirizzo_profilo').text(),				html: $('.sezione_profilo h1 span').html()			}		],		address: $('#indirizzo_profilo').text(),		zoom: 13	});		/* PARCO MACCHINE */		$('.sezione_parco tr').click(function() {		window.location.href='/parco_macchine/'+$(this).attr('ref')+'.html';	});		/* STAMPA */	$("#print").button({		icons: {			primary: 'ui-icon-print'		}	});		$("#print").click(function(e) {		e.preventDefault();		window.print();	});		/* TORNA INDIETRO */	$("#back").button({		icons: {			primary: 'ui-icon-triangle-1-w'		}	});		$("#back").click(function(e) {		history.back();	});		/* RICHIESTA INTERVENTO */	$(".sezione_richiesta button[type=submit]").button({		icons: {			primary: 'ui-icon-check'		}	});		/* TOOLTIPS */	$(".tooltip").qtip({		content: $(this).attr('alt'),		style: 'blue',		position: {		  corner: {			 tooltip: 'bottomRight'		  },		  target: 'mouse'		}	});		/* AGGIORNAMENTO MACCHINA RICHIESTA INTERVENTO */	$('select#richiesta_macchina').change(function() {		var oid=$("select#richiesta_macchina option:selected").val();		if (oid!='-1') {			$('#info_macchina').load('/parco_macchine/'+oid+'.ajax');		} else {			$('#info_macchina').html('');		}	});		/* CONFERMA */	$('.sezione_richiesta button[type=submit]').click(function(e) {		e.preventDefault();		$('#c_richiesta_referente').html($('#richiesta_referente').val());		$('#c_richiesta_macchina').html($('select#richiesta_macchina option:selected').text());		$('#c_richiesta_descrizione').html($('#richiesta_descrizione').val());		$('#c_locazione').html($('#info_macchina').text());		$('#c_richiesta_mail').html($('#richiesta_mail').val());		$('#dialog').dialog({			modal: true,			width: 520,			height: 350,			buttons: {				'Conferma': function() {					$('#dialog').dialog('destroy');					$('#loading').dialog({						modal: true,						resizable: false,						closeOnEscape: false,						draggable: false,						open: function(event, ui) { 						//nascondo bottone X.						$(this).parent().children().children('.ui-dialog-titlebar-close').hide();						}					});										$('.sezione_richiesta form').submit();				},				'Annulla': function() {					$(this).dialog('close');				}			}		});	});	});
