// JavaScript Document
var pageHeight;
function initWindow()
{
	return; // bypass
	
	pageHeight = $('#body').height();
	$(body).css('height',(pageHeight+'px'));
	$(window)	.resize	   (function(){	
		if(browser == 'ie6') return;

		if(pageHeight <= $(window).height())
		{
			if(browser == 'iphone')
			{
				$('#foot').css('bottom','-95px');
			}
			else
			{
			}
			
			$(body).css('height','100%');	

		}
		else
		{
			if(browser == 'iphone')
			{
				//$(body).css('height',(pageHeight+25)+'px');	
				//$('#foot').css('bottom','-135px');
			}
			else
			{
				$(body).css('height',pageHeight+'px');	
			}
		}
		
	});
	
	$(window).resize();
}

