jQuery.noConflict();

jQuery(document).ready(function(){
	
	jQuery("a.zoom").fancybox();
	jQuery("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);

	
});




function open_commentaire() {
	$("voile").show();
	var el = $("pop_commentaire");
	el.setStyle( { "display" : "block" } );
}

function close_commentaire() {
	$("voile").hide();
	$("pop_commentaire").setStyle({"display" : "none"});
}

function submitCommentaire() {
	$("commentaire_form").request({
		onComplete: function(response)  {
			close_commentaire();
			alert(response.responseText);
		}
	});
}




