var boxkeres_active; // aktualis tab sorszama 1..4

$boxkeres_tabs=new Array(
	null,
	$(".boxkeres #tab_1"),
	$(".boxkeres #tab_2"),
	$(".boxkeres #tab_3"),
	$(".boxkeres #tab_4")
);

$boxkeres_contents=new Array(
	null,
	$(".boxkeres #content_1"),
	$(".boxkeres #content_2"),
	$(".boxkeres #content_3"),
	$(".boxkeres #content_4")
);


function boxkeres_init(active)
{
	boxkeres_activate(active);

	$(".boxkeres .tab").click(
		function()
		{
			id=this.id.split("_")[1];
			boxkeres_setactive(id);
		}
	);
}

function boxkeres_setactive(id)
{
	//if (id==4)
	//	window.location.href='csomagutak';
	$boxkeres_active.removeClass("tab_active");
	$boxkeres_c_active.addClass("none");
	boxkeres_activate(id);
}

function boxkeres_activate(id)
{
	boxkeres_active=id;
	$boxkeres_active=$boxkeres_tabs[id];
	$boxkeres_c_active=$boxkeres_contents[id];
	$boxkeres_active.addClass("tab_active");
	$boxkeres_c_active.removeClass("none");
}

