$(function(){
	var is_ie8 = $.browser.msie && $.browser.version < 9;
	
	if( !is_ie8 ) {
		$('head').append('<link rel="stylesheet" href="/css/css3.css" type="text/css" media="screen" />');
	}


	var is_mobile = navigator.userAgent.indexOf('iPhone') != -1 || navigator.userAgent.indexOf('iPod') != -1 || navigator.userAgent.indexOf('iPad') != -1;

	if( is_mobile ) {
		$('body').css('min-width', '1024px');
	}

});
