/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function css_browser_selector(u){
    var ua = u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1;
},g='gecko',w='webkit',s='safari',o='opera',h=document.documentElement,b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3.5')?g+' ff3 ff3_5':is('firefox/3')?g+' ff3':is('gecko/')?g:is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.$1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.$2:'')):is('konqueror')?'konqueror':is('chrome')?w+' chrome':is('iron')?w+' iron':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?'mobile':is('iphone')?'iphone':is('ipod')?'ipod':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win':is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);



/*
 esempio per modifica stili CSS
		<style type="text/css">
		.ie .example {
			background-color: yellow
		}
		.ie7 .example {
			background-color: orange
		}
		.gecko .example {
			background-color: gray
		}
		.win.gecko .example {
			background-color: red
		}
		.linux.gecko .example {
			background-color: pink
		}
		.opera .example {
			background-color: green
		}
		.konqueror .example {
			background-color: blue
		}
		.safari .example {
			background-color: black
		}
		.chrome .example {
			background-color: cyan
		}
		.example {
			width: 100px;
			height: 100px;
			border: 1px solid black;
		}
		.no_js { display: block }
		.has_js { display: none }
		.js .no_js { display: none }
		.js .has_js { display: block }
		</style>
 */
