$(document).ready(function() {  
	$('#switcher_tabs > ul').tabs({ fx: { opacity: 'toggle' } });
	$('#doksi > ol#tartalom').tabs({ fx: { opacity: 'toggle' } });
	var $tabs = $('#contentmenu > ul').tabs({ fx: { opacity: 'toggle' } });
    $('#tabbox > ul').tabs({ fx: { opacity: 'toggle' } });
    
    $('#comments').click(function() { // bind click event to link
    	$tabs.tabs('select', 1); // switch to third tab
	    return false;
	});

	$('#response').click(function() { // bind click event to link
    	$tabs.tabs('select', 1); // switch to third tab
	    return false;
	});
	
	$('#price').click(function() { // bind click event to link
    	$tabs.tabs('select', 4); // switch to third tab
	    return false;
	});
	
	$('#price1').click(function() { // bind click event to link
    	$tabs.tabs('select', 4); // switch to third tab
	    return false;
	});
	
	$('#fejezetek').click(function() { // bind click event to link
    	$tabs.tabs('select', 1); // switch to third tab
	    return false;
	});
});