// my functions

jQuery(function($) {
	
	jQuery("#content").jScrollPane({
		showArrows:true,
		scrollbarWidth: 13, 
		arrowSize: 13,
		scrollbarMargin: 0
		});
	
	jQuery(".content-box-links li").hover(
	  function () {
	    jQuery(this).addClass("active");
	  }, 
	  function () {
	    jQuery(this).removeClass("active");
	  }
	);
	
	
});

jQuery(document).ready(function() {
	
	jQuery(".internal-link-new-window").fancybox({
		'padding'			: 20,
		'margin'			: 10,
		'width'				: 760,
		'height'			: 525,
		'autoScale'			: 'true',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayColor'		: '#fff',
		'overlayOpacity'	: 0.8
	});
	
});

