$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});
function t1(){
  jQuery(".blink").animate({ 
    opacity: 0,
  }, 1000 );
}
function t2(){
  jQuery(".blink").animate({ 
    opacity: 1,
  }, 1000 );
}
runT1 = true;
function rr() {
  if (runT1) {
    t1();
  } else {
    t2();
  }
  // toggle between 2 fns
  runT1 = !runT1;
  setTimeout("rr()", 500);
}
rr();
