/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

    $('document').ready(function(){
        $('.menuHeader').click(function(){

             $("div.menuCloser").slideUp();

             if($(this).parent().find(".menuCloser").is(':hidden')==false){
                  $(this).parent().find("div.menuCloser").slideUp();
              }
              else
              {
                  $(this).parent().find("div.menuCloser").slideDown();
              }
              return false;
        });
    });
    var timeout=0;
   $('document').ready(function(){
     
      $("div.scrollable").each(function() {
          var _this=this;
           setTimeout(function(){
           if(($(_this).attr('size')-0)>3)
            $(_this).scrollable({
                size: 3
            }).autoscroll({
               autoplay:true,
                steps:1,
                autopause:true
            }).circular();
       },timeout);
       timeout+=1000;
            
    });
   
    });





