$(document).ready(function(){
    	// BUTTONS
    	$('.fg-button').hover(
			function(){ $(this).removeClass('ui-state-default').addClass('ui-state-focus'); },
    		function(){ $(this).removeClass('ui-state-focus').addClass('ui-state-default'); }
			
    	);
		
		
		/*
		// or from an external source
		$.get('MenuHome.html', function(data){ // grab content from another page
			$('#MenuHome').menu({ content: data, showSpeed: 0 });
		});
		$.get('MenuSalon.html', function(data){ // grab content from another page
			$('#MenuSalon').menu({ content: data,  showSpeed: 0 });
		});
		$.get('MenuSkinCare.html', function(data){ // grab content from another page
			$('#MenuSkinCare').menu({ content: data,  showSpeed: 0 });
		});
		$.get('MenuHairExtension.html', function(data){ // grab content from another page
			$('#MenuHairExtension').menu({ content: data,  showSpeed: 0 });
		});
		$.get('MenuBridal.html', function(data){ // grab content from another page
			$('#MenuBridal').menu({ content: data,  showSpeed: 0 });
		});
		$.get('MenuEyeLashes.html', function(data){ // grab content from another page
			$('#MenuEyeLashes').menu({ content: data,  showSpeed: 0 });
		});
		$.get('MenuContactUs.html', function(data){ // grab content from another page
			$('#MenuContactUs').menu({ content: data,  showSpeed: 0 });
		});
		$.get('MenuHairLoss.html', function(data){ // grab content from another page
			$('#MenuHairLoss').menu({ content: data,  showSpeed: 0 });
		});
		$.get('MenuBlog.html', function(data){ // grab content from another page
			$('#MenuBlog').menu({ content: data,  showSpeed: 0 });
		});
		
		*/
		
		$('#MenuHome').menu(         { content: $('#MenuHome_data').html(), showSpeed: 0 });
		$('#MenuSalon').menu(        { content: $('#MenuSalon_data').html(),  showSpeed: 0 });
		$('#MenuSkinCare').menu(     { content: $('#MenuSkinCare_data').html(),  showSpeed: 0 });
		$('#MenuHairExtension').menu({ content: $('#MenuHairExtension_data').html(),  showSpeed: 0 });
		$('#MenuBridal').menu(       { content: $('#MenuBridal_data').html(),  showSpeed: 0 });
		$('#MenuEyeLashes').menu(    { content: $('#MenuEyeLashes_data').html(),  showSpeed: 0 });
		$('#MenuContactUs').menu(    { content: $('#MenuContactUs_data').html(),  showSpeed: 0 });
		$('#MenuHairLoss').menu(     { content: $('#MenuHairLoss_data').html(),  showSpeed: 0 });
		$('#MenuBlog').menu(         { content: $('#MenuBlog_data').html(),  showSpeed: 0 });
		
		
		
		
		
		
		$('#MenuHome').hover(function(){ $(this).click(); }); 
		$('#MenuSalon').hover(function(){ $(this).click(); }); 
		$('#MenuSkinCare').hover(function(){ $(this).click(); }); 
		$('#MenuHairExtension').hover(function(){ $(this).click(); }); 
		$('#MenuEyeLashes').hover(function(){ $(this).click(); }); 
		$('#MenuHairLoss').hover(function(){ $(this).click(); }); 
		$('#MenuBlog').hover(function(){ $(this).click(); }); 
		$('#MenuContactUs').hover(function(){ $(this).click(); }); 
		$('#MenuBridal').hover(function(){ $(this).click(); }); 
		
		
		
		
		
		
		
		
    });
