$(document).ready(function() {
   // hides the slickbox as soon as the DOM is ready
   // (a little sooner than page load)
   $('#login2').hide();

  $('a#slide').click(function() {
  
  $('#login2').slideToggle(400);
  
  return false;
  });
  
  });


$(function() {
		$('a[href^=http]').click( function() {
			window.open(this.href);return false;
	});
});


        $(document).ready(function(){
	    $("input, textarea").addClass("idle");
            $("input, textarea").focus(function(){
                $(this).addClass("activeField").removeClass("idle");
	    }).blur(function(){
                $(this).removeClass("activeField").addClass("idle");
	    });
        });

