﻿$('document').ready(function(){
    var pathName = window.location.pathname.toLowerCase();
    //console.log(pathName);
    $('#scroller').jScrollPane({scrollbarMargin:20, scrollbarWidth:16, topCapHeight:25, bottomCapHeight:25, dragMaxHeight:400});
    
    $('#menu ul li a').each(function(){
        var $this = $(this);
        var href = $this.attr('href').toLowerCase();
        if(pathName === href){
            $this.addClass('active');
        }
    });
});

function toggle_visibility(id) {
   var p = document.getElementById('contact');
   var q = document.getElementById('policy');
   var r = document.getElementById('contactLink');
   var s = document.getElementById('policyLink');
   var e = document.getElementById(id);
   if(p == e) {
   		q.style.display = 'none';
		r.style.color = '#40d0ff';
		s.style.color = '#000';
   } else {
   		p.style.display = 'none';
		s.style.color = '#40d0ff';
		r.style.color = '#000';
   }
   if(e.style.display == 'block') {
      e.style.display = 'none';
	  r.style.color = '#000';
	  s.style.color = '#000';
   } else {
      e.style.display = 'block';
   }
}