

$(function(){

				// Datepicker
				$('#datepicker').datepicker({
					minDate: 0,											
					inline: true,
					showButtonPanel: true,					
					dateFormat: 'yy-mm-dd', firstDay: 1,
					isRTL: false,
					onClose: function() {
							//alert($('#datepicker').value);
							$('#datepicker2').datepicker('option', 'minDate', $('#datepicker').datepicker( 'getDate' ));
							
						 }


				});
				

				$('#datepicker2').datepicker({
					minDate: 0,												 
					inline: true,
					showButtonPanel: true,
					dateFormat: 'yy-mm-dd', firstDay: 1,
					isRTL: false

				});
				
				$('#datepicker3').datepicker({
					minDate: 0,												 
					inline: true,
					showButtonPanel: true,
					dateFormat: 'yy-mm-dd', firstDay: 1,
					isRTL: false,
					onClose: function() {
							//alert($('#datepicker').value);
							$('#datepicker4').datepicker('option', 'minDate', $('#datepicker3').datepicker( 'getDate' ));
							
						 }

				});
				
				$('#datepicker4').datepicker({
					minDate: 0,												 
					inline: true,
					showButtonPanel: true,
					dateFormat: 'yy-mm-dd', firstDay: 1,
					isRTL: false

				});
				
				//hover states on the static widgets
				$('#dialog_link, ul#icons li').hover(
					function() { $(this).addClass('ui-state-hover'); }, 
					function() { $(this).removeClass('ui-state-hover'); }
				);
				
			});
