$(function() {
	
	$("#vertical li a.current").parent().children("ul").each(function(){
            $(this).show();
        });
	
	if($('#url_img_actu').length == 1 && $('#url_img_actu').html() != '') {
    	$('#img-bottom-left').find('img').attr('src', $('#url_img_actu').html());
    }


    $('.fancybox').each(function(){
        $link = $(this);
        if(!$(this).hasClass('notplus')) {
            $(this).children('img').load( function() {
                var img = $(this);
                $spacer = 20;
                if($link.parent().hasClass('img_rule_small') || $link.parent().hasClass('img_rule_medium') || $link.parent().hasClass('img_rule_big')) {
                    $spacer = $spacer+12;
                }
                var new_top = img.height() - $spacer;
                $(this).parent().append("<div class='more-fancy' style='top: "+new_top+"px;'></div>");
            });
        }
    });

    if($('#lightbox-medaille-link').length == 1) {
    	$('#lightbox-medaille-link').fancybox({ padding: 0, overlayOpacity: 0.85, overlayColor: "#FFF" });
    }

    $(".show_first_img").click(function(e) {
    	$elm = $(this).parent().parent().find(".one_gallery_main_pic").find('a.fancybox');
    	if($elm.length == 1) {
    		$elm.trigger('click');
    	}
    	e.preventDefault();
    });


    $('a').click(function(){
        if($(this).attr("rel")=="external") this.target = "_blank";
    });

});
