function is_mobile_browser() {

	var user_agent = navigator.userAgent.toLowerCase();
	
	if ( user_agent.indexOf('hiptop') != -1 ) {
		return true;
	}

	if ( user_agent.indexOf('blackberry') != -1 ) {
		return true;
	}

	if ( user_agent.indexOf('palm') != -1 ) {
		return true;
	}

	if ( user_agent.indexOf('windows ce') != -1 ) {
		return true;
	}

	if ( user_agent.indexOf('mot') == 0 ) {
		return true;
	}

	if ( user_agent.indexOf('lge') == 0 ) {
		return true;
	}

	if ( user_agent.indexOf('iphone') == 0 ) {
		return true;
	}


	return false;
}
