google.load("jquery", "1.3.1");
google.setOnLoadCallback(function()
{
	// Just for demonstration purposes, change the contents/active state using jQuery
	$("div.menu_tab div").click(function(e) {
		e.preventDefault();
		
		$("div.menu_tab div").each(function() {
			$(this).removeClass("menu_tab_button_aktiv");		
		});
		
		$(this).addClass("menu_tab_button_aktiv");
		
		
		
		$("div.menu_tab_view div").each(function() {
			$(this).removeClass("menu_tab_view_show");
			$(this).addClass("menu_tab_view_not_show");	
		});
		
		$("#menu_" + $(this).attr("title")).addClass("menu_tab_view_show");
		$("#menu_" + $(this).attr("title")).removeClass("menu_tab_view_not_show");
		
		$("#menu_" + $(this).attr("title") + " div").each(function() {
			$(this).removeClass("menu_tab_view_show");
			$(this).removeClass("menu_tab_view_not_show");
		});
	});
});
