jQuery(document).ready(function($) {
	$(".lyrics-link").colorbox({
    inline:true, 
    scrolling: false, 
    title:false
  });

  $(".video-link").colorbox({
    iframe:true, 
    innerWidth:425, 
    innerHeight:344, 
    onOpen:function(){
      $("object").hide();
    },
    onCleanup:function(){
      $("object").show();
    }
  });
  $(".planet-link").colorbox({
    iframe:true,
    innerWidth:640,
    innerHeight:385,
    onOpen:function(){
      $("object").hide();
    },
    onCleanup:function(){
      $("object").show();
    }
  });
  $(".clickable").colorbox();
  
   // Make the small shopping cart follow when scrolling
  if ($("#small_cart").length) {
    var originalCartPosition = $("#small_cart").offset().top;
   $(window).scroll(function() {
    var s = $(window).scrollTop();
    var cartBox = $("#small_cart");
    if (s > originalCartPosition) {
      cartBox.css({
        "position" : "fixed",
        "top"      : 0
      });
    } 
    else {
      cartBox.css({
        "position" : "static"
      });
    }
  });
  }


});
