
$(document).ready(function(){
	if (/(iPad|iPhone|iPod)/.test(navigator.platform)) {
		
//		$('ul#navi li:eq(4) a').click(function(event){
//			event.preventDefault();
//			alert("Coming Soon");									   
//		});
		
		var footerHTML = $('.footer').html();
		$('.footer').html('');
		$('body').append(footerHTML);
		$('#footer').css({
			'position':'absolute',
			'bottom': '',
			'top': (window.pageYOffset + window.innerHeight) + 35 + 'px',
			'z-index': 999
		});
		$('#supersized').css({'overflow':'hidden','width':$('#footer').css('width'),'height':$(window).height() + 250});
		$('#supersized a img').css( {'left':'0','right':'0'});
		
		if($('#promo-wrapper').length == 0){
			window.onscroll = function() {
				var topOffset = (window.pageYOffset + window.innerHeight - 35);
				document.getElementById('footer').style.top = topOffset  + 'px';
				$('#supersized').css({
					'position': 'absolute',
					'top': topOffset - window.innerHeight,
					'height':$(window).height() + 250,
					'width':$('#footer').css('width')
				});
				$('#supersized a img').css( {'width': '' , 'height':''});
				$('#supersized a img').css( {'height':'100%','left':'0','right':'0'});
	
			};
			window.scrollBy(0, 1);
		}
		
		
	}							   
});

