    $(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'); }
    	);
    	
    	// MENU - kozintezmenyek    	
		$('#kozintezmenyek').menu({ 
			content: $('#kozintezmenyek').next().html(), // grab content from this page
			showSpeed: 400,
			width: 240
		});

		// MENU - kozerdeku_adatok
		//$('#kozerdeku_adatok').menu({ 
		//	content: $('#kozerdeku_adatok').next().html(), // grab content from this page
		//	showSpeed: 400,
		//	width: 280
		//});

		$.get('js/vertical_menu/kozerdeku_adatok.html', function(data){ // grab content from another page 280
			$('#kozerdeku_adatok').menu({ content: data, flyOut: true, width:290 });
		});


		//elektronikus_ugyintezes
		$('#elektronikus_ugyintezes').menu({ 
			content: $('#elektronikus_ugyintezes').next().html(), // grab content from this page
			showSpeed: 400,
			//width: 234
		});

		//kozerdeku_informaciok
		$.get('js/vertical_menu/kozerdeku_informaciok.html', function(data){ // grab content from another page
			$('#kozerdeku_informaciok').menu({ content: data, flyOut: true, width:250 });
		});
		
		//vendeglatas_szallashelyek
		$('#vendeglatas_szallashelyek').menu({ 
			content: $('#vendeglatas_szallashelyek').next().html(), // grab content from this page
			showSpeed: 400,
			width: 240
		});
		

    });

