
// Contants
var c_cssPath   = "http://aruc-dtc.uqar.qc.ca/templates/aruc/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  
{
	 if (agt.indexOf("macintosh") != -1)
    {
        addStyleSheet('safari.css');
    }
    else
    {
        addStyleSheet('safaripc.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
	{
		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">');
}
