function runLibWeb() {
	
	// Setup menu buttons
	$j("#main-menu a").each( function () {
		$this = $j(this);
		$this.children(".overstate").hide();
		
		$this.parent().siblings(".dot").children("img").hide();
		
		if ( $j(".dot-selected a").get(0) != $this.get(0) )
		{
			$this.mouseover( function () {
				$t = $j(this);
				$t.children(".normalstate").hide();
				$t.children(".overstate").show();
				$t.parent().siblings(".dot").children("img").show();
			});
			$this.mouseout( function () {
				$t = $j(this);
				$t.children(".normalstate").show();
				$t.children(".overstate").hide();
				$t.parent().siblings(".dot").children("img").hide();
			});
		}
	});
	
	// Activate the selected menu
	$j(".dot-selected img.normalstate").hide();
	$j(".dot-selected img.overstate").show();
	
	$j(".dot-selected").siblings(".dot").children("img").show();
}