/* FANCYBOX */
$(document).ready(function() {
  /* Use AJAX loader */
  $("#floaterSpecs").fancybox();
  $("#floaterShipping").fancybox();
  $("#floaterContact").fancybox();
  $("#floaterSubscribe").fancybox();
  
  $("#floaterSubscribeSweats").fancybox(); // Temporary - delete when no longer needed.
  
  $("a#imageZoom").fancybox({
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'none'
			});
});


/* LAZY LOADER */
$(function(){
  $('img.lazy').asynchImageLoader();
});



/* SUBMIT BUTTON ROLLOVER */
$(document).ready(function(){
    $('.submitBuy').hover(
        function(){ // Change the input image's source when we "roll on"
            $(this).attr({ src : 'images/button-buy-over.gif'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $(this).attr({ src : 'images/button-buy.gif'});
        }
    );
});

