$(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;
  });
  
  });

$(document).ready(function(){
						   
	$(".box li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

}); //close doc ready


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

