(function($) {
  var cache = [];
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery);

$(document).ready(function(){
	
	// Photos
	
	$("div#photo_container ul li:first").show();
	$("div#photo_caption").html( $("div#photo_container img:first").attr("alt") );
	
	$("a.fb").fancybox({
		titlePosition: 'over'
	});
	
});