
function nonGalleryOverlay(){
	$('a.internalOverlay').click(function(){
		nonGalOverlayCreator($(this).next('.internalOverlayContent'))
	});
}


function nonGalOverlayCreator(e){
if($(e).is('.threeColumnOverlay')){
	var closeImage = '<img src="/media/images/close-overlay_61.jpg" alt="Close" />'; //set up the close button
	if($('#overlay').length != 0){
		$('#overlay').html('<div id="overlayMask"><!--mask--></div><div id="viewWindowInternal"><span class="closeBtn"><a href="#" class="close">'+closeImage+'</a></span>'+$(e).html()+'</div>');
	}else{
		$('body').prepend('<div id="overlay"><div id="overlayMask"><!--mask--></div><div id="viewWindowInternal"><span class="closeBtn"><a href="#" class="close">'+closeImage+'</a></span>'+$(e).html()+'</div></div>');
	}
	$('#overlay').fadeIn('fast');
	Cufon.replace('#overlay .bulldogLate');
	Cufon.replace('#overlay .editorContent h2');
	assignWindowEvents();
contactButtons();
	var scrollToPos=0;
	$('html, body').animate({"scrollTop":  scrollToPos+ "px"});
	positionOverlay();
	$('.close').click(function(){
		$('#overlay').fadeOut('fast').html(' ');return false;
	});
	$('#overlayMask').click(function(){
		$('#overlay').fadeOut('fast').html(' ');return false;
	});
}else{
var closeImage = '<img src="/media/images/close-overlay_61.jpg" alt="Close" />'; //set up the close button
	if($('#overlay').length != 0){
		$('#overlay').html('<div id="overlayMask"><!--mask--></div><div id="viewWindow" class="topMar"><span class="closeBtn"><a href="#" class="close">'+closeImage+'</a></span>'+$(e).html()+'</div>');
	}else{
		$('body').prepend('<div id="overlay"><div id="overlayMask"><!--mask--></div><div id="viewWindow" class="topMar"><span class="closeBtn"><a href="#" class="close">'+closeImage+'</a></span>'+$(e).html()+'</div></div>');
	}
	$('#overlay').fadeIn('fast');
	Cufon.replace('#overlay .bulldogLate');
	Cufon.replace('#overlay .editorContent h2');
contactButtons();
	var scrollToPos=0;
	$('html, body').animate({"scrollTop":  scrollToPos+ "px"});
	positionOverlay();
	$('.close').click(function(){
		$('#overlay').fadeOut('fast').html(' ');return false;
	});
	$('#overlayMask').click(function(){
		$('#overlay').fadeOut('fast').html(' ');return false;
	});
}

}


