function foto_in()
	{
	$('#overlay').fadeIn("normal");
	$('#overlay').animate({opacity: 0.9}, 1500)
	}

function foto_out()
	{
	$('#overlay').fadeOut("fast"); 
	}

function ajaxFunction($div,$module)
	{
	var xmlhttp;
	var next = $($div);
	if (window.XMLHttpRequest)
  		{
		xmlhttp=new XMLHttpRequest();
		}
	else if (window.ActiveXObject)
		{
		// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  		}
	else
		{
		alert("Your browser does not support XMLHTTP!");
		}
		
	xmlhttp.onreadystatechange=function()
		{
		if(xmlhttp.readyState==4)
			{ 
			$($div).html((xmlhttp.responseText));
			}
		}
	xmlhttp.open("GET",$module,true);
	xmlhttp.send(null);
	}
