// JavaScript Document
$(document).ready(
	function()
	{
		//inserire codice jQuery qua
		if (!jQuery.browser.mobile) // non mobile
		{        
			$('html').addClass('noMobile');
		}
		else // mobile
		{
			//	
		}; // fine DOMReady		
		noFlash();
	}
);
function note(_str) {
	$.fn.colorbox({width:600, height:500, html:_str, opacity:.75});
	};
	
function noFlash() {

	var plugin = ( (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) || (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.appVersion.indexOf("Win") != -1))) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
	
	};

