
$(document).ready(function(){
	Cufon.replace('.pitch h1'); 
	Cufon.replace('.main-content h2');
	Cufon.replace('.cufon');
});

$(document).ready(function() {
  
  /*tshirt button hover gradient*/
  
  $(".product_list .sizes a").hover(
      function () {
        $(this).css("background","url('/images/tshirts/gradhover.png') center no-repeat scroll");
		$(this).addClass("iehover");
      }, 
      function () {
        $(this).css("background","none");
		$(this).removeClass("iehover");
      }
    );

});


$(document).ready(function() {
  
  /*tshirt button hover gradient*/
  
  $(".product_list .sizes .xs").hover(
      function () {
        $(this).attr("src","/images/amazon/XS-roll.gif");
      }, 
      function () {
        $(this).attr("src","/images/amazon/XS-button.gif");
      }
    );
	$(".product_list .sizes .s").hover(
      function () {
        $(this).attr("src","/images/amazon/S-roll.gif");
      }, 
      function () {
        $(this).attr("src","/images/amazon/S-button.gif");
      }
    );
	$(".product_list .sizes .m").hover(
      function () {
        $(this).attr("src","/images/amazon/M-roll.gif");
      }, 
      function () {
        $(this).attr("src","/images/amazon/M-button.gif");
      }
    );
	$(".product_list .sizes .l").hover(
      function () {
        $(this).attr("src","/images/amazon/L-roll.gif");
      }, 
      function () {
        $(this).attr("src","/images/amazon/L-button.gif");
      }
    );
	$(".product_list .sizes .xl").hover(
      function () {
        $(this).attr("src","/images/amazon/XL-roll.gif");
      }, 
      function () {
        $(this).attr("src","/images/amazon/XL-button.gif");
      }
    );

});

$(document).ready(function() {

	/* t-shirt awesomeness. */ 
	
	$("a.img_lighbox").fancybox({
	  'hideOnContentClick': true,
	  'titleShow' : false,
	  'overlayColor' : '#000',
	  'overlayOpacity' : 0.6
	});
	
	
});

