//When the page has loaded...
$(document).ready(function() {
	
	//Fix the drop down menu mouse over action for IE 6...
	$('.IE6 #navigation li').mouseenter(function() {
		$('ul', this).css('visibility', 'visible');
	});
	
	//Fix the drop down menu mouse out action for IE 6...
	$('.IE6 #navigation li').mouseleave(function() {
		$('ul', this).css('visibility', 'hidden');
	});
	
	//Start image slideshow...
	$('#slideshow').cycle({timeout: 8000, random: 1});
	
	//Bookings Radio Toggle

	$('#return-table').hide();

	$('#oneway').click(function () {
		$('#return-table').hide();
	});
	$('#return').click(function () {
		$('#return-table').show();
	});
			//Form Validation 
	$("#callBack").validate({ 
			rules: {
				callname:  {required: true},
				callphone: {required: true,
                        digits: true},
				callemail: {required: true, 
						email: true}
	        }
	      });

	$("#booking").validate({ 
			rules: {
				firstName:  {required: true},
				lastName:  {required: true},
				Phone: {required: true,
                        digits: true},
				email: {required: true, 
						email: true}
	        }
	      });	
});
