// JavaScript Document

$(function() {
	$('.topicsAndNewsBoxRight').jScrollPane();
	
	$("#newWorks a").easyTooltip();
	$("#newWorks a img").attr("title", "");
	
	$("#staffBlog a").bigTarget();
	
	$('#newWorks li a').css("opacity","0.60");
	$("#newWorks li a").hover(
		function() {
			$(this).css("opacity","1.00");
		},
		function() {
			$(this).css("opacity","0.60");
		}
	);
});