/* détection par user agent */
function MobileSwitch(){
	if(
		(navigator.userAgent.match(/iPhone/i)) || 
		(navigator.userAgent.match(/iPad/i)) ||
		(navigator.userAgent.match(/iPod/i)) || 
		(navigator.userAgent.match(/symbian/i)) || 
		(navigator.userAgent.match(/android/i)) || 
		(navigator.userAgent.match(/series60/i)) || 
		(navigator.userAgent.match(/windows ce/i)) || 
		(navigator.userAgent.match(/blackberry/i)) || 
		(navigator.userAgent.match(/Aspen/i))||
		(navigator.userAgent.match(/Motorola/i))||
		(navigator.userAgent.match(/Nokia/i))||
		(navigator.userAgent.match(/Samsung/i))||
		(navigator.userAgent.match(/Smartphone/i))||
		(navigator.userAgent.match(/SonyEricsson/i))||
		(navigator.userAgent.match(/WAP/i))||
		(navigator.userAgent.match(/PlayStation Portable/i))||
		(navigator.userAgent.match(/Handspring/i))||
		(navigator.userAgent.match(/Blazer/i))||
		(navigator.userAgent.match(/Kyocera/i))||
		(navigator.userAgent.match(/palm/i)) 
	)
						{ 
						//switch for the three browsers above;
						var urlTofwd = "http://mobile.subramaniyam.info" + location.pathname;					
						location.replace(urlTofwd);
						}
	else{
		//do nothing for desktop browsers;
 		}
	}
MobileSwitch();
