$(document).ready(function() {  
  $('#homeHero').hide();
  $('#homeContent').hide();
  $("#homeHero").animate({ 
        opacity: 'show'
      }, 1000, showNext );
  function showNext() {
	  $("#homeContent").animate({ 
        opacity: 'show'
      }, 1000 );
      $('#home-feature').cycle({
        delay: 2000,
        speed: 1000
    });
  }
  	// pretty photo init
	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
});

