$(function(){
	var fg_w = false;
	var fg_s = false;
	$.each($.browser, function(i, val) {
		//alert("i=" + i + " : val=" + val );
		if ( i == 'webkit' ) {
			fg_w = true;
		}
		else if ( i == 'safari' ) {
			fg_s = true;
		}
	});
	if ( !fg_w || !fg_s ) {
		location.href = "http://www.loopedpicture.com";
	}
	//alert( "UA=" + navigator.userAgent );
	var UA = navigator.userAgent;
	if (!UA.match("iPod")&&!UA.match("iPhone")&&!UA.match("iPad")) {
		location.href = "http://www.loopedpicture.com";
	}

});

