$(document).ready(function(){

    //- Variables --------------------------------------------------------------
    var $base_url 	 = 'http://intra.legoff/';
    
    //- Initialisation ---------------------------------------------------------
	$(".haccordion").haccordion();
	$(".aheader:first").addClass('opened').next("div.acontent").stop().animate({
		width: "405px"
	}, 500);
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal',
		padding: 30,
		opacity: 0.90,
		showTitle: false,
		allowresize: true,
		counter_separator_label: '/',
		theme: 'dark_rounded',
		hideflash: false,
		modal: false
	});
	
		left = $('#drop-2').position().left;
		$('#drop-2 .subnav').css('left', left-1);
		
		left = $('#drop-3').position().left;
		$('#drop-3 .subnav').css('left', left-1);
	
	//- Evenements -------------------------------------------------------------
	
		//- Hover --------------------------------------------------------------
			
			//- Menu principal -------------------------------------------------
			
				$('#nav ul li a').hover(function(){
					src = $('img', this).attr('src');
					newsrc = src.split('.');
					$('img', this).attr('src', newsrc[0]+'-h.gif');
				}, function(){
					src = $('img', this).attr('src');
					newsrc = src.split('-h.');
					$('img', this).attr('src', newsrc[0]+'.gif');
				});
				
				$('#drop-2, #drop-3').hover(function(){
					$('ul', this).css('display', 'block');
				}, function(){
					$('ul', this).css('display', 'none');
				});
				
		//- Click --------------------------------------------------------------
		
			//- Pause du carroussel si lightbox --------------------------------
			
			
			
			//- Affiche la description d'un réa sur la page réalisations
				
				$('img.legende').live('click', function(){
					$("#contenu_texte").empty().html($(this).attr('title')).fadeIn();
				});
});
