/**
 * This file is to handle the traditional part of the amazing rake site with
 * with traditional Javascript.
 * @author Charles Russell
 */
$("document").ready(function(){
  $("#amzBuyItButton").click(function(){
	  window.location = "/store";
  })
  $("#amzBuyItButton").hover(function(){
    $("#passiveBuy").hide();
    $("#activeBuy").show();
    
  }, function(){
    $("#passiveBuy").show();
    $("#activeBuy").hide();  
  });
});

