//function init()
//{	
//	window.onresize();
//}
//window.onresize = function (e)
//{
//	var iH=window.innerHeight;
//	var test=document.getElementById("container").offsetHeight;
//	if (iH >= 768)
//	{
//		document.getElementById("container").style.height=(iH-150)+"px";
//	}
//	else
//	{
//		document.getElementById("container").style.height="618px";
//	}
//}
//When the DOM tree is loaded
//$(document).ready(function() {

    //Add pointer class to .photo .item
//    $(".photo .item").addClass("pointer");

    //Hover over photo fade in hidden span
 //   $(".photo .item").hover(
 //       function() {
 //           $(this).find("span").fadeIn();
 //       },
 //       function() {
 //           $(this).find("span").fadeOut();
 //       }
 //   );

//});

function linkOver(objID)
{
	document.getElementById(objID).style.visibility="visible";
}
function linkOut(objID)
{
	document.getElementById(objID).style.visibility="hidden";
}

