(function($) { 
$(document).ready( function(){
	$(".bulletin a").attr("href","#myBulletin");
	$(".bulletin a").click(function (){
		return false;
	});
	$(".bulletin a").fancybox({
		"padding": 0,
		"speedIn": 300,
		"speedOut": 300,
		"width": "375px",
		"height": "auto",
		"changeSpeed": 300,
		"transitionIn": "elastic",
		"transitionOut": "elastic",
		"titlePosition": "over",
		"titleShow": false,
		"easingIn": "swing",
		"easingOut": "swing",
		"showCloseButton": true,
		"showNavArrows": true,
		"enableEscapeButton": true,
		"overlayShow": true,
		"overlayOpacity": 0.4,
		"overlayColor": "#666",
		"centerOnScroll": false,
		"hideOnContentClick": false
	});
	$(".urgence a").attr("href","#urgence");
	$(".urgence a").click(function (){
		return false;
	});
	$(".urgence a").fancybox({
		"padding": 0,
		"speedIn": 300,
		"speedOut": 300,
		"width": "375px",
		"height": "auto",
		"changeSpeed": 300,
		"transitionIn": "elastic",
		"transitionOut": "elastic",
		"titlePosition": "over",
		"titleShow": false,
		"easingIn": "swing",
		"easingOut": "swing",
		"showCloseButton": true,
		"showNavArrows": true,
		"enableEscapeButton": true,
		"overlayShow": true,
		"overlayOpacity": 0.4,
		"overlayColor": "#666",
		"centerOnScroll": false,
		"hideOnContentClick": false
	});
});
})(jQuery);
function sendBulletin(){
	(function($) { 
		var d = new Date();
		var nom = $('#nom2').val();
		var courriel = $('#courriel2').val();
		var prenom = $('#prenom').val();
		var sujet = 'Abonnement au bulletin de nouvelle';
		var sendTo = "info@cotefleury.com";
		
		if(courriel == ''){
			valid = false;
			$('#courriel2').addClass('ecd_textbox_error');
			$('#msg').html('<FONT COLOR="#CC0000">Veuillez entrer votre adresse courriel.</FONT>');
		}else{
			if(!isEmail(courriel)){
				valid = false;
				$('#courriel2').addClass('ecd_textbox_error');
				$('#msg').html('<FONT COLOR="#CC0000">Veuillez entrer une adresse courriel valide.</FONT>');
			}
			else{
				$('#courriel2').removeClass();
				$.post("ext/courrieldirect/ajax/visitorSendMail.php",{nom:nom,courriel:courriel,prenom:prenom,sujet:sujet,sendTo:sendTo,time:d.getTime()},function(data){
					$("#myBulletin .csc-default").html("<h1>Bulletin Électronique</h1><p>Vous êtes maintenant inscrit à notre bulletin électronique !</p>");
				});
					
			}
		}
	})(jQuery);
		return false;
}
function isEmail(email){
		email = email + "";
		var reg = /^([_a-z0-9-]+(\.[_a-z0-9-]+)*)@([_a-z0-9-]+(\.[_a-z0-9-]+)*)\.([a-z]{2,6})$/i;
		return reg.test(email);
	}
