
// Script Copyright of 540 Web Solutions
// To use any scripts contact info@540web.net

window.addEvent('domready', function(){

	$('galleryTable').getElements('td.galleryTD').fade('0.7');
	
	$('galleryTable').getElements('td.galleryTD').addEvents({
		'mouseenter': function(){
			this.fade('in');
		},
		'mouseleave': function(){
			this.fade('0.7');
		}
	});


});

function openGallery(dest) {
	window.open(dest, '_blank','top=100, left=100, height=580, width=680, status=no, menubar=no, resizable=no, scrollbars=yes, toolbar=no, location=no, directories=no')
}


