// navigateurs ?
var BROWSER_DETECTED = false;
var IE = false;
var IE7 = false;
var IE6 = false;
var FF = false;

b = navigator.userAgent;
if(b.indexOf('Firefox') != -1)
{
	BROWSER_DETECTED = true; 
	FF = true;
}

if(b.indexOf('MSIE') != -1)
{
	BROWSER_DETECTED = true;
	IE = true;
	
	if(b.indexOf('MSIE 7') != -1)
		var IE7 = true;
	
	if(b.indexOf('MSIE 6') != -1)
		var IE6 = true;
}

function loadCSS()
{

	if(IE)	
	{
		if(IE6)
			document.write('<link href="css/styleIE6.css" rel="stylesheet" type="text/css" />');
		if(IE7)
			document.write('<link href="css/styleIE7.css" rel="stylesheet" type="text/css" />');
		
		return;
	}
	
	
	if(FF)
	{
		document.write('<link href="css/styleFF.css" rel="stylesheet" type="text/css" />');	
		return;
	}
	
	document.write('<link href="css/styleFF.css" rel="stylesheet" type="text/css" />');	
	
}