var defaultStyle = {"display":"none", "width":"10px", "height":"2px", "margin-left":"-5px", "margin-top":"-1px" };
var closeOnClick = false;


$(document).ready(function ()
{
	$("#serverdiv").mouseover(function () {
		closeOnClick = false;
	} );
	$("#serverdiv").mouseout(function () {
		closeOnClick = true;
	} );
	
	$(document).click(function () {
		if(closeOnClick === true)
			hideDiv();
	});
});

function showDiv(serverUrl){
	document.getElementById("serverframe").src = "http://www.skyttegrav.se/" + serverUrl;
	
	if(sg_animation_on)
	{
		$("#serverdiv").fadeIn(10, function ()
			{
				$(this).animate( { width:"610px", marginLeft:"-305px" }, 800).animate( {height:"410px", marginTop:"-205px"} , 200);
			}
		);
	}
	else
	{
		$("#serverdiv").css({display:"block", width:"610px", marginLeft:"-305px",height:"410px", marginTop:"-205px"});
	}
}
function hideDiv(){
	closeOnClick = false;
	if(sg_animation_on)
	{
		$("#serverdiv").fadeOut(400, function ()
			{ 
				$(this).css(defaultStyle); 
			} 
		);
	}
	else
	{
		$("#serverdiv").css(defaultStyle);
	}
}

