// JavaScript Document
$(document).ready(function(){
	
	var speed=250;

	$("div.bottone a").hover(
	function () {
    //$(this ).children("img.back_bt").animate({opacity:'1',width:'300',left:'-25',height:'210',top:'-15'},350);
	 // $(this ).children("img.back_bt").animate({opacity:'1'},350);
	$(this ).children(".dark").stop(true, false).animate({opacity:'.25'},speed);
	$(this ).children("p.testo_bt").stop(true, false).animate({opacity:'1',top:'-169'},speed);
  }, 
  function () {
    //$(this ).children("img.back_bt").animate({opacity:'.9',width:'250',left:'0',height:'175',top:'0'},350);
	////$(this ).children("img.back_bt").animate({opacity:'.65'},350);
	$(this ).children(".dark").stop(true, false).animate({opacity:'0'},speed);
	$(this ).children("p.testo_bt").stop(true, false).animate({opacity:'0',top:'-129'},speed);
  }
  );
	
	
		Galleria.loadTheme('galleria.classic.min.js');

	// Initialize Galleria	
$('#galleria').galleria({
    width: 719,
    height: 500
});

	});
