function load () {
	if(BrowserDetect.browser == "Explorer") {
		document.body.style.marginRight = '1px';
		if(BrowserDetect.version < 7) {
			var bgOn 	= function () { this.style.backgroundPosition = '0 -44px'; };
			var bgOff = function () { this.style.backgroundPosition = '0 0px'; };	
			document.getElementById('accueil').onmouseover 			= bgOn; 
			document.getElementById('accueil').onmouseout 			= bgOff;
			document.getElementById('competences').onmouseover 	= bgOn; 
			document.getElementById('competences').onmouseout 	= bgOff;
			document.getElementById('portfolio').onmouseover 		= bgOn; 
			document.getElementById('portfolio').onmouseout 		= bgOff;
			document.getElementById('contact').onmouseover 			= bgOn; 
			document.getElementById('contact').onmouseout 			= bgOff;
		}
	}
}

