/* - - - - - - - - - - - - - - - - - - - - -

Title : Smartphone Patch
Author : Hendrik Obermayer (Comolo IT)
URL : http://www.comolo.de/

- - - - - - - - - - - - - - - - - - - - - */




$(function(){
	var UserAgent = navigator.userAgent.toLowerCase();
	if(UserAgent.search(/(iphone|ipod|opera mini|fennec|palm|blackberry|android|symbian|series60)/)>-1){
  		$('body').addClass('smartphone');
		$('head').append('<meta name="viewport" content="width=device-width; initial-scale=1.0;" />');
		$('head').append('<meta name="HandheldFriendly" content="true" />');
		$('body.smartphone #mbCenter, body.smartphone #mbOverlay').remove();
		//$('#main').after( $('#right').html() );
		//$('#right:eq(2)').remove();
	}
});

