$(document).ready(function(){
  $("label").inFieldLabels();
  $("a.fancybox").fancybox({
	'hideOnContentClick': true, 
	'transitionIn': 'elastic', 
	'transitionOut': 'elastic', 
	'centerOnScroll' : true,
	'opacity' : true,
	'padding' : 0,
	'overlayOpacity'	: 0.6,
	'overlayColor'		: '#111',
	'titleShow' : false
  });
});

function showlink(linkid) {
	//if it's already open, close it
	thelink = document.getElementById(linkid);
	if (thelink.style.display == 'block') {
		thelink.style.display='none';
	} else {
		//otherwise, go through and close everything...
		var i=1;
		for (i=1;i<50;i++) {
			var linkid1 = 'link'+i;
			if (linkid2 = document.getElementById(linkid1)) {
				linkid2.style.display='none';
			}
		}
		//...and then open the selected link
		thelink.style.display='block';
	}
}
