$(document).ready(function()
{
	$().ajaxStop($.unblockUI);
	
	$("a[rel='photos']").colorbox();
	
	$("a.videos").colorbox({iframe:true, innerWidth:425, innerHeight:344});
	
	$('#sendmessage').submit(function(){
		$(this).ajaxSubmit({ beforeSubmit:  show_request, success: show_response, clearForm: true });
		return false;
	});
	
});

function show_request(formData, jqForm, options)
{
	$.blockUI({
		message: '<p>Traitement en cours, merci de patienter.</p><br /><img src="images/loader.gif" />',
		css: {
			border: 'none',
			padding: '15px',
			backgroundColor: '#000',
			'-webkit-border-radius': '10px',
			'-moz-border-radius': '10px',
			opacity: .5,
			color: '#fff'
		}
	});
}

function show_response(response_text, status_text)
{
	$().unblock();
	$.prompt( response_text );
}
