$(document).ready(function(){
	
	$("a[rel='photos']").colorbox({transition:"fade"});
	$('#date-requested').datepicker();
	$('#slider').cycle({fx:'fade'});
	$('#contact-form').validate();
	$('#contact-form').submit(function(e){
		e.preventDefault();
		var str = $(this).serialize();
		if ($('#contact-form').valid())
		{
			$('#submit-send').hide();
			$('#loading-bar').show();
			$.post('/contact', str, function(data){
				
				$('#submit-send').show();
				$('#loading-bar').hide();
				
				if (data == 'ok')
				{
					alert('Your message was sent successfully.');
                                        $('#contact-form').html('<h3 style="text-align:center;">Thank You</h3>');
				}
				else
				{
					alert('There was a problem sending your message. Please try again.');
				}
			});
		}
	});

});
