$(document).ready(function(){
	$('#header_container').supersleight();  
	$('#footer_container').supersleight();  
	$('.scroll').jScrollPane({scrollbarWidth:20, scrollbarMargin:20,dragMaxHeight:40});  
   	
   	$('.profiles').each(function()
	{
      $(this).qtip({
         content: '<a href="/nav/AboutUs/'+ $(this).attr('id') + '">View ' + $(this).attr('title') + '\'s Profile</a>',
         position: 'topRight',
         hide: {
            fixed: true
         },
         style: {
            padding: '5px', 
            name: 'dark',
            width:200,
            textAlign: 'center'

         }
      });
   });

   
});
