// JavaScript Document

jQuery(document).ready(function(){
	function showbg(el){
		var id = jQuery(el).attr('id');
		jQuery('#imgbg' + id).show();
	}
	function hidebg(el){
		var id = jQuery(el).attr('id');
		jQuery('#imgbg' + id).hide();
	}
	
	var org = jQuery('a#orgatarifs');
	org.mouseover(function(){
		showbg(this);
	}).mouseout(function(){
		hidebg(this);
	});	
	
	var acc = jQuery('a#index');
	acc.mouseover(function(){
		showbg(this);
	}).mouseout(function(){
		hidebg(this);
	});
	
	var enc = jQuery('a#encadrement');
	enc.mouseover(function(){
		showbg(this);
	}).mouseout(function(){
		hidebg(this);
	});	

	var car = jQuery('a#cartonnage');
	car.mouseover(function(){
		showbg(this);
	}).mouseout(function(){
		hidebg(this);
	});
	
	var gal = jQuery('a#galerie');
	gal.mouseover(function(){
		showbg(this);
	}).mouseout(function(){
		hidebg(this);
	});
});

