// JavaScript Document
 
$(function(){
    	// BUTTON
    	$('.fg-button').hover(
    		function(){ $(this).removeClass('ui-state-default').addClass('ui-state-focus'); },
    		function(){ $(this).removeClass('ui-state-focus').addClass('ui-state-default'); }
    	);
    			
		// MENU	
		$('#analysisMenu').menu({ 
			content: $('#analysisMenu').next().html(), // grab content from this page
			crumbDefaultText: ' ',
			flyOut: true,
			maxHeight: 280,
			showSpeed: 200 
		});
		
		// MENU	
		$('#reportMenu').menu({ 
			content: $('#reportMenu').next().html(), // grab content from this page
			showSpeed: 400 
		});
		
		// MENU	
		$('#helpMenu').menu({ 
			content: $('#helpMenu').next().html(), // grab content from this page
			showSpeed: 400 
		});
    });