var box = 1;
function changeObj( num ) {
	$('#box'+box).hide();
	$('#box'+num).show();
	$('#link'+box).removeClass("active");
	$('#link'+num).addClass("active");
	cookieControl.set('searchbox',num,'1','','','');

    box = num;
}

