/* ############################################################################################# */
/* Javascript Functions for Robert Schultze
/* ############################################################################################# */

/*
function center(album)
{

	var site_width = $('#middle').width()+$('#sidebar').width()+100; //Saves the Sitewidth in an Var
	var middle = ($(document).width()/2)-(site_width/2); //Calculates the middle position for the whole Site
	
	if(album == '')
	{
		middle = ($(document).width()-800)/2; //Calculates the space to the left Viewport
		if(middle < 50)
		{
			middle = 0;
		}
		$("#wrapper").css({ left:middle});
	}
	else
	{
		$("#wrapper").css({ left:middle});
	}
}
*/

function center()
{
	var middle = ($(document).width()/2)-408; //Calculates the middle position for the whole Site
	$("#wrapper").css({ left:middle});
}

function resize_middle(new_width)
{
	$("#middle").css({ width:new_width});
	$("#navigation").fadeIn("normal");
};


function load_image_informations(title)
{
	//var title = "Titel";
	var html = "<div id='left' onclick=' $.galleria.prev()'><<</div><div id='right' onclick='$.galleria.next()'>>></div>"+title;
	$(".caption").html(html);
	
}

function toogle_mosaik(img_id)
{
		
}
