$(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	
		$('#gnavcontact a').menu({ 
			content: $('#gnavcontact a').next().html(), // grab content from this page
			showSpeed: 400,
			width:120
	});
});
