var resizeHandler = function()
{
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
	{
		// nothing yet
	}//if iphone
};//resizeHandler

$(document).ready(function(){
	$('.menuMain').find('a').each(function(){
		var harr = $(this).attr('href').split('/');
		if(harr.length > 0 && harr[harr.length - 1] == SECTION)$(this).addClass('active');
	});
	
	resizeHandler();	
	setInterval(resizeHandler, 400);
	
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
	{
		$(window).scroll(function(){		
			$('h1').css('top', window.innerHeight + window.scrollY - 44 + "px");
		});		
	}//if iphone
});

$(window).resize(resizeHandler);
