$(document).ready(function() {

	$("a.fancybox").fancybox({
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'speedIn' : 150,
		'speedOut' : 150,
		'width' : 800,
		'scrolling' : 'no'
	});

	try{
		new Dragdealer('scroll-bar', {
			horizontal : false,
			vertical : true,
			yPrecision : content.offsetHeight,
			animationCallback : function(x, y) {
				var margin = y * (content.offsetHeight - mask.offsetHeight);
				content.style.marginTop = String(-margin) + 'px';
			}
		});
	}
	catch(e){
		
	}

});
