function h3init() {
		// this layout could be created with NO OPTIONS - but showing some here just as a sample...
		// myLayout = $('body').layout(); -- syntax with No Options

		myLayout = $('body').layout({

		//	enable showOverflow on west-pane so popups will overlap north pane
			west__showOverflowOnHover: true

		//	reference only - these options are NOT required because are already the 'default'
		,	closable:				true	// pane can open & close
		,	resizable:				true	// when open, pane can be resized 
		,	slidable:				true	// when closed, pane can 'slide' open over other panes - closes on mouse-out

		//	some resizing/toggling settings
		,	north__resizable:		false	// OVERRIDE the pane-default of 'resizable=true'
		,	north__spacing_open:	0		// no resizer-bar when open (zero height)
		,	north__spacing_closed:	20		// big resizer-bar when open (zero height)
		
		,	south__resizable:		false	// OVERRIDE the pane-default of 'resizable=true'
		,	south__spacing_open:	0		// no resizer-bar when open (zero height)
		,	south__spacing_closed:	20		// big resizer-bar when open (zero height)
		
		,	west__resizable:		false	// OVERRIDE the pane-default of 'resizable=true'
		,	west__spacing_open:	0		// no resizer-bar when open (zero height)
		,	west__spacing_closed:	20		// big resizer-bar when open (zero height)

		,	east__resizable:		false	// OVERRIDE the pane-default of 'resizable=true'
		
		//	some pane-size settings
		,	west__size:			220
		,	north__size:			94
		,	south__size:			35
		,	east__size:			300
		});

	    $("#leftMenuUl").corner("tl 8px").corner("br 8px");
	    $("#leftMenu ul li").corner("tl 8px").corner("br 8px");
	    
	    $('#rightColPanelBoxes').cycle({ 
		fx:     'fade', 
	        speed:  300, 
	        timeout: 45000, 
	        pager: '#rightColPanelHeader',
	        pagerAnchorBuilder: function(idx, slide) {
	    	    if (slide.id=='rightColPanelBox1') tabTitle = 'Munkáink';
	    	    if (slide.id=='rightColPanelBox2') tabTitle = 'Híreink';
	    	    if (slide.id=='rightColPanelBox3') tabTitle = 'Ügyfélkapu';
	    	    return '<a href="#" id="' + slide.id + 'Pager">' + tabTitle + '</a>';
	        }
	    });
	                                                                                        
	    $("#rightColPanelWrap").corner("tl 8px").corner("br 8px");
	    $("#rightColPanelBox1Pager").corner("tl 8px").corner("br 8px");
	    $("#rightColPanelBox2Pager").corner("tl 8px").corner("br 8px");
	    $("#mainContent #rightcolReferencesWrap .contentElement").corner("tl 8px").corner("br 8px");
	    
	    $("#rightcolReferencesWrap").cycle({ 
		fx:     'fade', 
	        speed:  300, 
	        timeout: 5000
	    });

	    $("a, input").each(function() {
		$(this).attr("hideFocus", "true").css("outline", "none");
	    });

	    $("ui-layout-north").css('visibility', 'visible');
	    $("ui-layout-south").css('visibility', 'visible');
	    $("ui-layout-west").css('visibility', 'visible');
	    $("ui-layout-east").css('visibility', 'visible');
	    $("ui-layout-center").css('visibility', 'visible');

}
