$(document).ready(function(){
    openAfterSomeTime();

    //$(".blocDocVendre div").hide();
    $(".blocDocVendre div").addClass("hide");
    $(".blocDocVendre h2").click(function(){
        if ($(this).next(".blocDocVendre div:visible").length != 0) {
            $(this).removeClass();
            $(this).next(".blocDocVendre div").slideUp(100);
        } else {
            $(".blocDocVendre div").slideUp("fast");
            $(".blocDocVendre h2").removeClass();
            $(this).next(".blocDocVendre div").slideDown(300);
            $(this).addClass("open");
        }
    });
	
	// Action bouton commande de document
	/*$(".btnCommandGratuit a").click(function(){
		// Récupération du ID document
        var documentId = $(this).attr("id").substr(9); // document-
        var hrefIframe = "iframe-formulaire-vendre.php?documentId=";
		$("a#lienFormVendre").attr("href", hrefIframe+documentId);
        // Active lightbox
        $("a#lienFormVendre").trigger("click");
	});
	
	// Fancybox
    $("a#lienFormVendre").fancybox({
        'hideOnContentClick': false,
        'frameWidth': 500,
        'frameHeight': 650,
		'overlayColor':'#092032',
        'overlayOpacity': 0.9,
        'padding': 0
    });*/

    $("#formContactezNous").hide();
    $(".btnContactezNous a").toggle(function(){
        $("#formContactezNous").slideDown(300);
        return false;
    },function(){
        $("#formContactezNous").slideUp(100);
        return false;
    });
});

function openAfterSomeTime(){
    var t=setTimeout('$(".blocDocVendre div:first").slideDown("slow", function () { $(this).prev("h2").addClass("open") } )',350);
}