$(document).ready(function() {
	$("#largeImage img").attr("src","images/transparent.gif");
});

function popupWin() { //v2.0
  var winTop = ((screen.height/2)-(512/2))-10;
  var winLeft = (screen.width/2)-(400/2);
  window.open('popup/downloads.html','test','scrollbars=no,width=400,height=512,top='+winTop+',left='+winLeft);
}

function popupImage(theImage) { //v2.0
  var winTop = ((screen.height/2)-(512/2))-10;
  var winLeft = (screen.width/2)-(400/2);
  window.open(theImage,'image','scrollbars=no,width=600,height=450,top='+winTop+',left='+winLeft);
}

function lightbox(image) {
	var width = $(document).width();
	var imageLeft = (width/2)-340;
	var imagePath = "images/large/"+image;
	var top = $(document).scrollTop()+40;
	var height = $(document).height();
	$("#overlay").css("height",2000).css("width",width).fadeIn();
	
	$("#images").css('visibility','hidden');
	$("#largeImage").css("left",imageLeft).css("top",top).children("img").attr("src",imagePath);
	$("#largeImage").fadeIn();
}

function closeOverlay() {
	$("#largeImage, #overlay").fadeOut("fast", function() {
		$("#images").css('visibility','visible');
		$("#largeImage img").attr("src","images/transparent.gif");
	});
}