$(document).ready(function() {
  $('#slideshow').cycle({fx: 'fade', timeout: 5000, speed: 2000});
	
	$('#calculate').click(function(){
		var boat_length = $('#boat_length').val();		
		var unit = $('input:radio[name=unit]:checked').val(); 	
		var type = $('input:radio[name=type]:checked').val();	
		var payment = $('input:radio[name=payment]:checked').val();
		
		$('#rate_form').validate({
			rules: {
				boat_length:{
					required:true,					
					number: true,
					min: 1
				},
				unit:{
					required: true
				},
				type:{
					required: true
				},
				payment:{
					required: true
				}				
			}			
		});
	});
	
	$('.popup_enquiry_link').colorbox({width: "30%", height: "50%", inline: true, href: '#popup_enquiry_form'});
	
});

