/*
	Journey quote form.
	© Gareth Harding 11th August 2011.
	Permitted for use on nazminibushire.co.uk only.		
*/

// Datepicker and tool tip components
$(document).ready(function() {
	
	
	$(function() {

		$('#oDate').datetimepicker({
			dateFormat : 'dd/mm/yy',
			ampm : true,
			stepMinute : 10,
			minDate : new Date(),
			hourGrid : 6,
			minuteGrid : 10
		});
		$('#rDate').datetimepicker({
			dateFormat : 'dd/mm/yy',
			ampm : true,
			stepMinute : 10,
			minDate : new Date(),
			hourGrid : 6,
			minuteGrid : 10
		});

	});
	
	// test
	$('#oDate').change(function() {
		
		//alert('sda');
		//if ($('#oDate').val() != "") {
		//$('#rDate').datetimepicker().remove();
			
			$('#rDate').datetimepicker('destroy');
			
			$('#rDate').datetimepicker({
				dateFormat : 'dd/mm/yy',
				ampm : true,
				stepMinute : 10,
				minDate : $('#oDate').val(),
				hourGrid : 6,
				minuteGrid : 10
			});
			
			
		//} 
		
	
	});
	// end test
	
	$('#fAddr,#tAddr').qtip({
		content : 'Please enter an address, airport or station.<br />For example "5 Oxford St, Sw1" or "Heathrow Airport".',
		show : 'focus',
		hide : 'blur',
		position : {
			corner : {
				target : 'bottomRight',
				tooltip : 'topLeft'
			}
		},
		style : {
			name : 'light',
			border : {
				width : 1,
				radius : 3,
				color : '#72a9d3'
			},

			width : 380,

			tip : {
				corner : 'topLeft',  // We declare our corner within the object using the corner sub-option
				color : '#72a9d3',
				size : {
					x : 24,  // Be careful that the x and y values refer to coordinates on screen, not height or width.
					y : 12 // Depending on which corner your tooltip is at, x and y could mean either height or width!
				}
			}
		}

	})

})
