/**
 * Fancy script sets up the page and runs the code in the div.js elements
 */
/*
$(function(){

$('.infoHover').bt({
  padding:10,
  width: 300,
  spikeLength: 30,
  spikeGirth: 0,
  cornerRadius: 6,
  fill: 'rgba(181, 220, 16, .95)',
  strokeWidth: 1,
  strokeStyle: '#b5dc10',
  cssStyles: {color: '#222222', fontSize:12 , fontWeight: 'normal'},
  showTip: function(box){
    var $content = $('.bt-content', box).hide(); 
    var $canvas = $('canvas', box).hide();
    var origWidth = $canvas[0].width;
	var origHeight = $canvas[0].height;
    $(box).show();
    $canvas
      .css({width: origWidth * .5, height: origHeight * .5, left: origWidth * .25, top: origHeight * .25, opacity: .1})
      .show()
      .animate({width: origWidth, height: origHeight, left: 2, top: 0, opacity: 1}, 400, 
        function(){$content.show()}
		);
  },
  hideTip: function(box, callback){
    var $content = $('.bt-content', box).hide();
    var $canvas = $('canvas', box);
    var origWidth = $canvas[0].width;
    var origHeight = $canvas[0].height;
    $canvas
      .animate({width: origWidth * .5, height: origHeight * .5, left: origWidth * .25, top: origHeight * .25, opacity: 0}, 400,  callback); 
  },
  
  shrinkToFit: true,
  hoverIntentOpts: {
    interval: 0,
    timeout: 0
  }
});
});
*/
