$(document).ready(function(){

	$('#scrollArea, #scrollArea2').jScrollPane({showArrows:true, scrollbarWidth: 7, dragMaxHeight: 19} );

	$('.team_photos ul').jScrollPane({showArrows:true, scrollbarWidth: 7, dragMaxHeight: 19} );

	$('ul.team img').mouseover(function(){
		$(this).addClass("hovered");
	}).mouseout(function(){
		$(this).removeClass("hovered");
	}).click(function(){
		window.location.href = $(this).attr('rel');
	});


});