﻿var vertestabs={
	init:function(menuId){
	
	 $("ul#"+menuId).bind("mousemove",function(e){
           
              var heightOfUl=$(this).innerHeight();
              if(heightOfUl>272)
              $(this).css("margin-top",-(e.pageY-$(this).parent().offset().top)*((heightOfUl-272)/272));
                               
              
       });
       $("ul#"+menuId).hover(function(e){},function(e){
         $(this).animate({marginTop:"0px"},500,"linear");
       });
 
     
          
      
      }
		
	}