var root = '/';

var pics = new Array (
	'agence_coul.png',
	'equipe_coul.png',
	'competences_coul.png',
	'references_coul.png',
	'logo_hover.png',
	'affiche_annonce_hover.png',
	'edition_hover.png',
	'illustration_hover.png',
	'packaging_hover.png',
	'signaletique_hover.png',
	'web_hover.png',
	'corporate_design_hover.png',
    'contact_coul.png'
);

function preloadImages (pics) {

    var images = new Array;

    for (var i=0; i<pics.length; i++) {
        images[i] = new Image();
        images[i].src = ( root + 'images/' + pics[i]);
    }

return images;

}

preloadImages(pics);


$(document).ready(function() {
	
	$('dl dt a').mouseover(function() {
		$('ul').css('display','none');
		if ($('#references').attr('class')!='active') {
			document.getElementById('references').style.background = 'url('+root+'images/references_bl.png)';
		}
	});
	
	$('#flashcontent').mouseover(function() {
		$('ul').css('display','none');
		if ($('#references').attr('class')!='active') {
			document.getElementById('references').style.background = 'url('+root+'images/references_bl.png)';
		}
	});
	
	$('#references').mouseover(function() {
		$('ul').css('display','block');
		this.style.background = 'url('+root+'images/references_coul.png)';
	});
	
	$('.logo').mouseover(function() {
		this.style.background = 'url('+root+'images/logo_hover.png)';
	});
	
	$('.logo').mouseout(function() {
		this.style.background = 'url('+root+'images/logo.png)';
	});
	
	$('.affiche_annonce').mouseover(function() {
		this.style.background = 'url('+root+'images/affiche_annonce_hover.png)';
	});
	
	$('.affiche_annonce').mouseout(function() {
		this.style.background = 'url('+root+'images/affiche_annonce.png)';
	});
	
	$('.edition').mouseover(function() {
		this.style.background = 'url('+root+'images/edition_hover.png)';
	});
	
	$('.edition').mouseout(function() {
		this.style.background = 'url('+root+'images/edition.png)';
	});
	
	$('.illustration').mouseover(function() {
		this.style.background = 'url('+root+'images/illustration_hover.png)';
	});
	
	$('.illustration').mouseout(function() {
		this.style.background = 'url('+root+'images/illustration.png)';
	});
	
	$('.packaging').mouseover(function() {
		this.style.background = 'url('+root+'images/packaging_hover.png)';
	});
	
	$('.packaging').mouseout(function() {
		this.style.background = 'url('+root+'images/packaging.png)';
	});
	
	$('.signaletique').mouseover(function() {
		this.style.background = 'url('+root+'images/signaletique_hover.png)';
	});
	
	$('.signaletique').mouseout(function() {
		this.style.background = 'url('+root+'images/signaletique.png)';
	});
	
	$('.web').mouseover(function() {
		this.style.background = 'url('+root+'images/web_hover.png)';
	});
	
	$('.web').mouseout(function() {
		this.style.background = 'url('+root+'images/web.png)';
	});
	
	$('.corporate_design').mouseover(function() {
		this.style.background = 'url('+root+'images/corporate_design_hover.png)';
	});
	
	$('.corporate_design').mouseout(function() {
		this.style.background = 'url('+root+'images/corporate_design.png)';
	});
	
});
