// JavaScript Document
	$(document).ready(function(){
	setTimeout(function() { $('#example').fadeIn(); }, 1000);
	
     $('#close').click(function(event){
       event.preventDefault();
       $('#example').hide("slow");
     });
      $('#show_news').click(function(event){
       event.preventDefault();
       $('#example').show("slow");
     });

 });

