// for the project gallery pages 
$(document).ready(function() {
   var index = 0;
	$('#GALLERY li')
	.find('img').css('opacity', '0.8').end()
	.find('a').hover(
		function() { 
			if (! $(this).hasClass('stub')) {
				$('div', this).animate({ 'top': '-28px' }, 300); 
				$('img', this).fadeTo(500, 1)
			}
		},
		function() { 
			if (! $(this).hasClass('stub')) {
				$('img', this).fadeTo(200, 0.8)
				$('div', this).animate({ 'top': '0px' }, 200); 
			}
		}
	).each(function() {
		var me = $(this);
		if (me.hasClass('stub')) {
			me.css('opacity', '0.3');
		} else {
			me.append("<div><span>" + me.attr('title') + "</span></div>");
			me.attr('title','');
		}
	});
});		

