//console.log('iphone test')
var agent=navigator.userAgent.toLowerCase();
var is_iphone = (agent.indexOf('iphone')!=-1);
if (is_iphone) {
	$(document).ready(function(){
		$("#footer").css("z-index","-1");
		$(".flashBG").hide();
	});
}
