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'));
	});
	$("a[rel='fancy']").fancybox({
		'transitionIn'			: 'elastic',
		'transitionOut'			: 'elastic',
		'hideOnContentClick'	: true,
		centerOnScroll          : true
	});
});