
var boxmain = new Array('gallery-1', 'gallery-2', 'gallery-3', 'gallery-4', 'gallery-5', 'gallery-6', 'gallery-7', 'gallery-8');
var show_panel = '';
function Boxmain(p)
{
	var i, e, t;

	if (typeof(p) == 'string')
	{
		show_panel = p;
	}

	for (i = 0; i < boxmain.length; i++)
	{
		document.getElementById(boxmain[i]+ '-bm').className='hide';
		t = document.getElementById(boxmain[i]);
		t.className = 'opacity-no';
	}
	document.getElementById(show_panel+ '-bm').className='show';
	document.getElementById(show_panel).className = "opacity";
}

function SetCookie(gallery)
{
	$.cookie('num_gallery',gallery, {path:'/'});
}

function redirect(gallery)
{
	SetCookie(gallery);
	document.location.href="/autopark.html";
}
