$(function() {

	$('a.lightbox').lightBox(); // Select all links with lightbox class


	Cufon.replace('h1, h2, div#nav, a.image_thumbnail span');

});


$(document).ready(function(){  

	function loadGallery(){
	
		$.ajax({
			url : location.href + "hero/",
		    dataType: 'html',
		    success: function(data) {
				$("#hero_gallery").fadeIn('slow', function() {

				});				    
		    	$("#hero_gallery").append(data);
		    	$("#hero_gallery").show();
	    
		    	
		    	
				$('.cycle').cycle({ 
				    fx:      'fade', 
				    timeout:  2000, 
				    autostop: 1, 
				    end:      function() {  
				    	$("#hero_gallery").fadeOut('slow', function() {
    						$("#hero_gallery").html('');
    						$("#hero_gallery").hide();
    						loadGallery();
  						});						
				    } 
				});    
		    }
		});	
	
	};
	$("#hero_gallery").fadeIn('slow', function() {
		loadGallery();
	});		
    
 
});  
