Contact Us
Top
teFormat: 'dd-mm-yy',
minDate: 0,
onSelect: function(dateText, inst) {
// alert(dateText);
selectdate(dateText);
}
});
$(document).ready(function(){
$('.book-fixed').addClass('book-expand');
});
$(window).scroll(function() {
if ($(this).scrollTop()) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
$("#toTop").click(function () {
$("html, body").animate({scrollTop: 0}, 1000);
});