/*
 * VERSION: @version $Id: browsers.js 2008-04-29 15:00 $
 * PACKAGE: @package Theme Joomla Template - Color Fusion
 * COPYRIGHT: @copyright Copyright (C) 2008 Theme Joomla. All rights reserved. E & OE
 * INFO: This is a modified version created specifically for our templates.
 * Please visit our site www.themejoomla.com and read our terms and conditions for more info.
 *
 * SCRIPT: browsers.js
 * SCRIPT LICENSE: http://creativecommons.org/licenses/by/2.5/
 * SCRIPT COPYRIGHT: @copyright Copyright Rafael Lima (http://rafael.adm.br) – subject to Authors Copyright
 * SCRIPT CREDITS: script by Rafael Lima (http://rafael.adm.br) used with Theme Joomla Template - Color Fusion
 */

var css_browser_selector = function() {
	var 
		ua=navigator.userAgent.toLowerCase(),
		is=function(t){ return ua.indexOf(t) != -1; },
		h=document.getElementsByTagName('html')[0],
		b=(!(/opera|webtv/i.test(ua))&&/msie (\d)/.test(ua))?('ie ie'+RegExp.$1):is('gecko/')? 'gecko':is('opera/9')?'opera opera9':/opera (\d)/.test(ua)?'opera opera'+RegExp.$1:is('konqueror')?'konqueror':is('applewebkit/')?'webkit safari':is('mozilla/')?'gecko':'',
		os=(is('x11')||is('linux'))?' linux':is('mac')?' mac':is('win')?' win':'';
	var c=b+os+' js';
	h.className += h.className?' '+c:c;
}();