//Display an alternate homepage window if they're on an iPad
$(document).ready(function() {
	var isiPad = navigator.userAgent.match(/iPad/i) != null;
	if(isiPad)
	{
		$("#window").remove();
		$("#noFlash").attr('style', 'display: block');
	}
});



