$(document).ready(function(){
		
	$("#eventSubscription").validate({
		messages: {
			nom: {
				required: 'Êtes-vous bien sûr ?'
			},
			email: {
				required: 'Hm, votre email semble invalide'
			},
			portable: {
				required: 'Votre 06 est incorrect'
			}
		}
	});

	// bind form using ajaxForm
	$('#eventSubscription').ajaxForm({
		// target identifies the element(s) to update with the server response
		target: '#subscriptionContent',
		
		// success identifies the function to invoke when the server response
		// has been received; here we apply a fade-in effect to the new content
		success: function() {
			$('#TB_ajaxContent').css('height','215px');
		}
	});
	
	function monkey(){ window.location.href='http://www.monkeyshoulder.com/'; }
	function inrocks(){ window.location.href='http://www.lesinrocks.com/'; }
	function gq(){ window.location.href='http://www.gqmagazine.fr/'; }
	function barmag(){ window.location.href='http://www.barmag.fr/'; }
	function nova(){ window.location.href='http://www.novaplanet.com/'; }
	function diip(){ window.location.href='http://www.doitinparis.fr/'; }
	function nanar(){ window.location.href='http://www.facebook.com/nanarland'; }
	
	$('#footer').imagemap([
		{top_x: 690,top_y: 20,bottom_x: 870,bottom_y:130,callback: monkey},
		{top_x: 840,top_y: 130,bottom_x: 970,bottom_y:180,callback: inrocks},
		{top_x: 890,top_y: 210,bottom_x: 970,bottom_y:260,callback: gq},
		{top_x: 890,top_y: 320,bottom_x: 1000,bottom_y:370,callback: barmag},
		{top_x: 630,top_y: 170,bottom_x: 730,bottom_y:220,callback: nova},
		{top_x: 590,top_y: 240,bottom_x: 760,bottom_y:330,callback: diip},
		{top_x: 590,top_y: 340,bottom_x: 750,bottom_y:410,callback: nanar}
	]);

});
