jQuery.fn.alphaEffect = function() {
	return this.each(function() {
		$(this).find('img:first').css('position', 'absolute');
		$(this).find('img:first').css('height', '130');
		$(this).css('height', '130px');
		$(this).css('padding-bottom', '10px');
		$(this).find('img:last').css({'position' : 'absolute', 'z-index' : '-1'});

	
		$(this).find('img:first').mouseover(function(){
			$(this).animate({ 
			opacity: 0.0,
		  }, 750 );
		});
		
		$(this).find('img').mouseout(function(){
			$(this).animate({ 
			opacity: 1.0,
		  }, 750 );
		});
	
	});


};
