
	window.addEvent('domready', function(){	
		
		// smooth scroll enabled on bookmarks
		new SmoothScroll({ duration:700 }, window);
		
		// tooltips enabled on elements with class .tooltip
		var toolTips = new Tips('.tooltip',{ 'className':'tool_tip'});
		
		showPanel();
		
	});
	
	function showPanel(){
		if($defined($('feature_panel'))){
			$('feature_panel').reveal();
		}
	}
		
	function closePanel(){
		if($defined($('feature_panel'))){
			$('feature_panel').dissolve();
		}
	}		