$(document).ready(function(){ 
	  $('ul.sf-menu').superfish({ 
		  delay:       700,                            
		  animation:   {opacity:'show',height:'show'},  
		  speed:       'normal',                          
		  autoArrows:  false ,                          
		  dropShadows: false 
	  });
	  $('.dropitem').hide();
	  $('.droplink').click(function() { 
  	      $(this).next('div.dropitem').slideToggle(400,function() {
	          /*$('.scroll-pane').jScrollPane({
	            scrollbarWidth:14,
	            showArrows:true,
	            arrowSize:17
	          });*/
  	      }).siblings('div.dropitem').slideUp(400,function() {
	          /*$('.scroll-pane').jScrollPane({
	            scrollbarWidth:14,
	            showArrows:true,
	            arrowSize:17
	          });*/
  	      });
	  });
	  /*$('.scroll-pane').jScrollPane({
	    scrollbarWidth:14,
	    showArrows:true,
	    arrowSize:17
	  });
	  $('.scroll-pane').css('visibility','visible');*/

    $("span.contactlink").click(function() {
        names=$(this).attr("id");
        names=names.split('---');
        contactname=names[0].split('-');
        $('#Contact').attr('value',names[1]);
        $('#ContactName').text(contactname[0]+' '+contactname[1]);
        /*$('.scroll-pane')[0].scrollTo(320);*/
        window.location="#contactform";
        $('#reqName').focus();
    });
});
function scrollTo(line) {
    $('.scroll-pane')[0].scrollTo(line);
}
