/* Declare a namespace for the site */
var Site = window.Site || {};

/* Create a closure to maintain scope of the '$'
   and remain compatible with other frameworks.  */
(function($) {
	
	//same as $(document).ready();
	$(function() {
		
		$(".peKenBurns").peKenburnsSlider({externalFont:true})
		
		// Dismiss alert box
		$(".alert").click(function(){
			$(this).fadeOut('slow');
		});

	});


	$(window).bind("load", function() {
		
		$(".peKenBurns").each(function() {
        	$(this).data("peKenburnsSlider").fontsLoaded()
    	})
	
	});
	
})(jQuery);
