$(document).ready(function(){
    
    var flip = 0;
    $("#hide-info").click(function () {
										  
     $("#newsticker").fadeOut("slow");
	  $("#show-info").fadeIn("slow");
    });

	 $("#show-info").click(function () {
										  
     $("#newsticker").fadeIn("slow");
	  $("#show-info").fadeOut("slow");
    });

  });



