$(document).ready(function() {
	if ($('body').hasClass('home')) {
		if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
			location.replace('/index-html.html');
		} else {
			$('#mainContent').flashembed('/penley-aug11.swf', {
				wmode: 'transparent'
			});
		}
	} else if ($('body').hasClass('about')) {
		if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
			/*var statementScroll = new iScroll('statement', { hscroll: 'false'});
			var bioScroll = new iScroll('bio', { hscroll: 'false'});
			document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);*/
			$('.textarea').css('height','278px');
			$('#instructions').show();
			$('#player').find('object').replaceWith('<audio width="400" height="15" controls="controls" autoplay="autoplay"><source src="/music/03%20Bearing%20Witness%201.mp3" type="audio/mpeg" /></audio>');
		}
	} else if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
		$('#player').find('object').replaceWith('<audio width="400" height="15" controls="controls" autoplay="autoplay"><source src="/music/03%20Bearing%20Witness%201.mp3" type="audio/mpeg" /></audio>');
	}
});

function show(tab) {
	if (tab == 'bio') {
		$('.header-about').css('background-position','0 0');
		$('#statement').hide();
		$('#bio').show();
	} else if (tab == 'statement') {
		$('.header-about').css('background-position','0 -30px');
		$('#bio').hide();
		$('#statement').show();
	}
}
