$(function(){ // on dom ready
	// BUGFIX: anchors break layout in many browsers
	if(!$.browser.msie || $.browser.version>7) { // older ie browsers don't have this problem and don't support this script for some reason, probably http://whycanfail.wordpress.com/2008/08/01/windowscrollto-javascript-function-does-not-work-in-internet-explorer-6/
		//smooth scroll to anchors on the same page
		$.localScroll();
		//if browser jumps the page content, no choice but to make the overflow visible
		if(location.hash) $('#bg_block').css('overflow','visible');
	}
});
