// JavaScript Document

$(document).ready(function() {
	$('.button').mouseenter (function(){
				$(this).parent().children('.btn-image').stop().animate({
						'opacity' : '.7'
				}, "fast");
	});
	$('.button').mouseleave (function(){
				$(this).parent().children('.btn-image').stop().animate({
						'opacity' : '1'
				}, "fast");
	});								   
});