var touch_device = false;

// Mobile browser detection.
if( navigator.userAgent.match(/Android/i) ||
		navigator.userAgent.match(/webOS/i) ||
		navigator.userAgent.match(/iPhone/i) ||
		navigator.userAgent.match(/iPad/i) ||
		navigator.userAgent.match(/iPod/i)
		)
		{
	 	// touch code
	 	touch_device = true;				 	
	}
	//touch_device = true; // test touch

$(window).load(init);
	



