// JavaScript Document
$(document).ready(function(){
						   
  		$(".date-pick").datepicker({		
			showOn: 'button', 
			buttonImage: 'Images/calendarIcon.jpg', 
			buttonImageOnly: true,
			position: 'top',
			dateFormat: 'dd/mm/yy',
			currentText: 'Now',
			topOffset: 180
			
		});
	
});

