if(!FlashDetect.installed){ 
	var deviceAgent = navigator.userAgent.toLowerCase(); 
	$iOS = deviceAgent.match(/(iphone|ipod|ipad)/);
	if ($iOS) {
		var footerTop=$('#nav').height()+$('#main').height(); 
		$('#footer').css({'position':'absolute','top':footerTop});
	} 
}

$(document).ready(function(){
	hash=location.hash;
	$('.left[href="'+hash+'"]').click();
});

