/********************************************************
//
//Script from www.edovia.com
//
********************************************************/

// Contants
var c_cssPath   = "http://www.ateliersoluc.com/css/";

var agt=navigator.userAgent.toLowerCase(); 

if (agt.indexOf('opera') != -1) // OPERA
{
   
    if (agt.indexOf("macintosh") != -1)
    {
        addStyleSheet('opera.css');
    }
    else
    {
        addStyleSheet('operapc.css');
    }
}
else if (agt.indexOf('safari') != -1) // SAFARI  
{
	addStyleSheet('safari.css');
}
else if(agt.indexOf('granparadiso') != -1) // FF3.0
{
	if (agt.indexOf('mac') != -1)
	{
    	//Do nothing
	}
	else
	{
		addStyleSheet('ffpc.css');
	}
}
else if (agt.indexOf('firefox') != -1) // FF
{
	if (agt.indexOf('mac') != -1)
	{
    	//addStyleSheet('ff.css');
	}
	else if(agt.indexOf('firefox/3') != -1){
		addStyleSheet('ff3.css');
   }
	else
	{
		addStyleSheet('ffpc.css');
	}
}
else if (agt.indexOf('msie') != -1) // IE
{
	if (agt.indexOf('msie 7') != -1)
	{
		addStyleSheet('ie7.css');

	}
	else
	{
		addStyleSheet('ie6.css');

	}

}



function addStyleSheet(file)
{
    document.write('<link rel="stylesheet" href="' + c_cssPath + file + '" type="text/css">');
}
