//Configure bookmarking properties
share.url = "http://www.dawsonscreek.com";
share.title = "Dawson's Creek: The Complete Series | On DVD Now | Official Site ";
share.description = "All six seasons of the popular series in a collectible bound anthology book filled with photos and trivia!"
share.tweet = "Dawson's Creek: The Complete Series - On DVD Now - Check out the official site! http://www.dawsonscreek.com";
share.tracking = true;
share.unique_tracking_id = '_button';

$(document).ready(function(){
	$('.scroll-pane').jScrollPane({showArrows:false, scrollbarWidth: 6, dragMinHeight:2, dragMaxHeight:15});
	
	$('#sharelinks a').click(function () {
		var rel_id = $(this).attr("rel");
		share.send(rel_id);
		return false;
	});

	$('#navcontainer ul li').mouseover(function() {
		$(this).addClass('over');
	});

	$('#navcontainer ul li').mouseout(function() {
		$(this).removeClass('over');
	});
});

