$(document).ready(function(){
		
	$(".buttons a").hover(function(){
		$(this).next("span").stop(true, true).animate({opacity:"show", top:"197"}, "fast");
	}, function(){
		$(this).next("span").stop(true, true).animate({opacity:"hide", top:"197"}, "fast");
	});
	$(".gallery a").hover(function(){
		$(this).next("div.info").stop(true, true).animate({opacity:"show", top:"0"}, "fast");
	}, function(){
		$(this).next("div.info").stop(true, true).animate({opacity:"hide", top:"0"}, "fast");
	});
	
});