$(document).ready(function() {

$('#Date').datepicker({
			onSelect: function(dateText, inst) {
				var s = dateText.split("/");
				$("#Day").val(s[0]);
				$("#Month").val(s[1]);
				$("#Year").val(s[2]);
			},
			dateFormat: 'dd/mm/yy',
			defaultDate: null
		}); 

$('a[rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
$("#Date").attr("autocomplete", "off");
$('#xuyutt-xuyutt').one("focus",function() { 
			$(this).val("");
		});

$('input[type=submit]').mouseover(function () {
		$(this).css('cursor', 'hand');
		});

});
