$("document").ready( function() {
	$('tr.notes').hide();
	$('.notesBtn').click(function() {
		fShowNotes(this.name, this);
	});
	
	$('a.imgLink').lightBox({
		overlayBgColor: '#999',
		overlayOpacity: 0.5
			
	});
});


// show the notes
function fShowNotes(id, theBtn)
{
	var target = '#' + id.replace(/(:|\.)/g,'\\$1');
	$(target).fadeIn('slow');
	$(theBtn).attr('value', 'Close').unbind('click');
	$(theBtn).click(function() {
	fCloseNotes(this.name, this);	
	});
	
}

// close the notes
function fCloseNotes(id, theBtn)
{
	var target = '#' + id.replace(/(:|\.)/g,'\\$1');
	$(target).fadeOut('slow');
	$(theBtn).attr('value', 'Details').unbind('click');
	$(theBtn).click(function() {
	fShowNotes(this.name, this);	
	});
}
