function pardessus(){
	var magasin = document.getElementById('magasin');
	var marque = document.getElementById('marques');
	var contact = document.getElementById('contact');
	
	magasin.onmouseover = function(){
		this.setAttribute('src','images/interface/snowboard_shop_dessus.gif');
	}
	magasin.onmouseout = function(){
		this.setAttribute('src','images/interface/snowboard_shop.gif');
	}
	marque.onmouseover = function(){
		this.setAttribute('src','images/interface/marques_snowboard_dessus.gif');
	}
	marque.onmouseout = function(){
		this.setAttribute('src','images/interface/marques_snowboard.gif');
	}
	contact.onmouseover = function(){
		this.setAttribute('src','images/interface/contact_dessus.gif');
	}
	contact.onmouseout = function(){
		this.setAttribute('src','images/interface/contact.gif');
	}
}

function lienbandeau(){
	var bandeau = document.getElementById('bandeau');
	
	bandeau.onclick = function(){
		window.location = 'index.html';
	}
}

window.onload = function(){
	pardessus();
	lienbandeau();
}