// JScript File

$(document).ready(function(){

    $('input:text').hint();
    $('input:password').hint();

	$("ul.slidable").each(function () { 

var $list = $(this);
if ($list.children().length > 3) {	
  $list.addClass("slidingList");
  $list.after("<a class='toggler'>View More</a>");
  addButtons();
}
})


    //if (window.location.href.indexOf("?q=") < 0) {
    //    $('textarea').autogrow();
    //}
    
    //$("form").each(function(){
    //    var $that = $(this);
     //   $that.submit(function(){
     //       $(this).find("input[type='image'],input[type='submit']").attr("disabled", "true");
    //        setTimeout('$("input[type=\'submit\']").removeAttr("disabled")', 2500);
    //    });
    //});
});// JavaScript Document