$(function() {
	$('#viewpicbox a').lightBox({fixedNavigation:true});
});

function showimg(id) {
	document.getElementById(id).style.zIndex="6";
	document.getElementById(id).style.opacity="1";
}


function hideimg(id) {
	id.split("");
	document.getElementById(id).style.zIndex=id[1];
	document.getElementById(id).style.opacity="0.9";
}

function expand() {
	check = $('#excheck').val();
	if (check == 1) {
		$('#logintop').animate({
			"marginTop": "123px"
		}, 500);
		$('#login').animate({
			"height": "40px"
		}, 500);
		document.getElementById('excheck').value = 2;
	} else {
		$('#logintop').animate({
			"marginTop": "163px"
		}, 500);
		$('#login').animate({
			"height": "0px"
		}, 500);
		document.getElementById('excheck').value = 1;
	}
}

function chatbox() {
	$("#chatwin").load('chatbox.php?chat');
	setTimeout('chatbox()', 15000);
}


function switchsite(site) {

	check = document.getElementById('site').value;
	if (site == 1)
	{
		if (check == 2) {
			$('#info').fadeOut(500, function () {
				$('#info').load('ajaxtxt.php?guildinfo='+site, function () {
					setTimeout('switchsite2(\''+site+'\')', 0);
				});
			});
		}
	} 
	else 
	{
		if (check == 1) {
			$('#info').fadeOut(500, function () {
				$('#info').load('ajaxtxt.php?guildinfo='+site, function () {
					setTimeout('switchsite2(\''+site+'\')', 0);
				});
			});
		}
	}
}

function switchsite2(site)
{
	$('#info').fadeIn();
	if (site == 2)
	{
		document.getElementById('site').value = 2;
	}
	else
	{
		document.getElementById('site').value = 1;
	}
}
