$(document).ready(function () {
	//Nav noScroll Events
	$("#nav-btn").click(function () {
		$("body").toggleClass("no-scroll");
	});

	//Date And Time Placeholder Change
	$('input[name="b_date"]').each(function () {
		var el = this, type = $(el).attr('type');
		if ($(el).val() == '') $(el).attr('type', 'text');
		$(el).focus(function () {
			$(el).attr('type', type);
			el.click();
		});
		$(el).blur(function () {
			if ($(el).val() == '') $(el).attr('type', 'text');
		});
	});
	$('input[name="b_time"]').each(function () {
		var el = this, type = $(el).attr('type');
		if ($(el).val() == '') $(el).attr('type', 'text');
		$(el).focus(function () {
			$(el).attr('type', type);
			el.click();
		});
		$(el).blur(function () {
			if ($(el).val() == '') $(el).attr('type', 'text');
		});
	});
});