var IE6UPDATE_OPTIONS = {
	icons_path: base_dir+"static/img/interface/"
};
$(document).ready(function(){
	$("a[rel='out']").click(function(event){
		event.preventDefault();
		window.open($(this).attr('href'));
	});
	$('.scroll-pane').jScrollPane({
		scrollbarWidth: 12
	});
	$('.scroll-pane-content, #contactForm').jScrollPane({
		scrollbarWidth: 15,
		scrollbarMargin: 48
	});
	$(".backToTop").click(function(){
		$('.scroll-pane-content')[0].scrollTo(0);
	});
	$("a[rel='fancy']").fancybox({
		'transitionIn'			: 'elastic',
		'transitionOut'			: 'elastic',
		'hideOnContentClick'	: true,
		centerOnScroll          : true
	});
});
