var $j = jQuery.noConflict();

$j(document).ready(function(){
	var pathname = window.location.href.toString();
	
	if (pathname.match('#')) { 
		$j("#column2").toggle();
		// the URL contains an anchor
		// click the navigation item corresponding to the anchor
		var myAnchor = pathname.split('#')[1];
		//alert(myAnchor);
		var link = $j('a[name="' + myAnchor + '"]').next().attr("href");
		//alert(link);
		//$j('a[name="' + myAnchor + '"]').next().click();
		window.location.replace(link); 		
	}
});
