$(document).ready(function() {
	jQuery('#fcarousel').jcarousel({
        scroll: 3
    });
	jQuery('#pcarousel').jcarousel({
        scroll: 3
    });
	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
	
	$("#macaron").click(function() {
                $("#fermer").show();
		$("#conseil_paysagiste").slideDown();
		 if(!$.browser.msie){
                    $("#macaron").fadeOut();
                 }
	});
	
	$("#fermer").click(function() {
                $("#fermer").hide();
		$("#conseil_paysagiste").slideUp();
                 if(!$.browser.msie){
                    $("#macaron").fadeIn();
                 }
	});

	$("#menu li a").click(function() {
		if ($(this).attr("href")=="") {
			if ($(this).parent().children("ul").is(":hidden")) {
				$(this).parent().children("ul").slideDown();
			}
			else {
				$(this).parent().children("ul").slideUp();
			}
			return false;
		}
	});
});
