$(function(){
	$('.banner_inner').sideswap();
	$('#middle').jScrollPane({scrollbarWidth: 10, showArrows:true});
	$('.corner').corner("10px");
	$('.cornertop').corner("top 10px"); 
	$('input').focus(function() {
		$(this).parent().parent().addClass("fieldfocus");
	});
	$('input').blur(function() {
		$(this).parent().parent().removeClass("fieldfocus");
	});
	$('textarea').focus(function() {
		$(this).parent().parent().addClass("fieldfocus");
	});
	$('textarea').blur(function() {
		$(this).parent().parent().removeClass("fieldfocus");
	});
	$("#ajax-contact-form").submit(function(){
		var str = $(this).serialize();
		$.ajax({
			type: "POST",
			url: "mail/contact.php",
			data: str,
			success: function(msg){
				$("#note").ajaxComplete(function(event, request, settings){
					if(msg == 'OK')
					{
						result = '<div class="notification_ok">Votre Message a ete envoye , Merci!</div>';
						$("#fieldscontainer").hide();
					}
					else
					{
						result = msg;
					}
					$(this).html(result);
				});
			}
		});
		return false;
	});
});

