
$("#home-reveal").hide();
     $('#showhomereveal').click(function() {
   		$("#home-reveal").fadeIn(1500);
		$(this).fadeOut(1500);
  });

 
 
   $(document).ready(function(){
	
	$('#homerotate') 
.after('<div id="homeslide-nav">') 
.cycle({ 
fx: 'fade', 
    speed: 500, 
    timeout: 9000, 
    pager:  '#homeslide-nav' 
});
	
});	
