//----------------------------------------------------------------------------------------------------------------
//										DROP DOWN MENU
//----------------------------------------------------------------------------------------------------------------
$(document).ready(function(){
    $("li.dropDown").hover(function(){
		$(this).addClass("hover");
        $('ul:first',this).css('display', 'block');
    }, function(){
        $(this).removeClass("hover");
        $('ul:first',this).css('display', 'none');
    });
});
//----------------------------------------------------------------------------------------------------------------
//	END									DROP DOWN MENU
//----------------------------------------------------------------------------------------------------------------

//----------------------------------------------------------------------------------------------------------------
//										Preparation Lightbox
//----------------------------------------------------------------------------------------------------------------
	$(document).ready(function(){
		$(".lightbox").colorbox();
	});
//----------------------------------------------------------------------------------------------------------------
//	END										Preparation Lightbox
//----------------------------------------------------------------------------------------------------------------

//----------------------------------------------------------------------------------------------------------------
//										Preparation Lightbox
//----------------------------------------------------------------------------------------------------------------
	$(document).ready(function(){
		$("a[rel='lightbox']").colorbox(
		{
			width:"800",
			height:"600",
			iframe:true,
			scroll:true,
			current:"PAGE {current} / {total}"
		});
		$("a[rel='youtube']").colorbox(
		{
			width:"800",
			height:"800",
			iframe:true,
			scroll:true,
			current:"VIDEO {current} / {total}"
		});
		$("a[rel='circonscription']").colorbox(
		{
			width:"800",
			height:"600",
			iframe:true,
			scroll:true,
			current:"PAGE {current} / {total}"
		});
		$("a[rel='section1']").colorbox(
		{
			width:"800",
			height:"600",
			iframe:true,
			scroll:true,
			current:"PAGE {current} / {total}"
		});
		$("a[rel='section2']").colorbox(
		{
			width:"800",
			height:"600",
			iframe:true,
			scroll:true,
			current:"PAGE {current} / {total}"
		});
		$("a[rel='section3']").colorbox(
		{
			width:"800",
			height:"600",
			iframe:true,
			scroll:true,
			current:"PAGE {current} / {total}"
		});
		$("a[rel='section4']").colorbox(
		{
			width:"800",
			height:"600",
			iframe:true,
			scroll:true,
			current:"PAGE {current} / {total}"
		});
		$("a[rel='staff']").colorbox(
		{
			width:"800",
			height:"600",
			iframe:true,
			scroll:true
		});
		$("a[rel='widgetGallery']").colorbox(
		{
			scalePhotos:true,
			current:"IMAGE {current} / {total}"
		});
		$("a[rel='agenda']").colorbox(
		{
			width:"500",
			height:"500",
			iframe:true,
			scroll:true,
			current:"AGENDA {current} / {total}"
		});
		$("a[rel='completeAgenda']").colorbox(
		{
			width:"500",
			height:"500",
			iframe:true,
			scroll:true,
			current:"AGENDA {current} / {total}"
		});
		$("a[rel='print']").colorbox(
		{
			width:"800",
			height:"600",
			iframe:true,
			scroll:true
		});
		$("a[rel='mail']").colorbox(
		{
			width:"500",
			height:"500",
			iframe:true,
			scroll:true
		});
	});
//----------------------------------------------------------------------------------------------------------------
//	END										Preparation Lightbox
//----------------------------------------------------------------------------------------------------------------
