/**
 * MyPlanet5
 *
 * MyPlanet5 application.
 *
 * @link       http://www.myplanet5.com
 * @category   MyPlanet5
 * @package    MyPlanet5
 */

$(document).ready(function(){
	$('input.datepicker').datepicker({ 
		duration: 'fast',
		changeMonth: true,
		changeYear: true,
		minDate: new Date(1920, 1 - 1, 1),
		showButtonPanel: true,
		dateFormat: 'dd/mm/yy',
		yearRange: '1920:2011'
	});

	$("#error-dialog").dialog({
		bgiframe: true,
		modal: true,
		draggable: false,
		resizable: false,
		show: 'clip',
		hide: 'clip',
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});

});



