$(document).ready(function(){
						   
		$("ul#index-statement-links li a").hover(function() {
		  $(this).next("em").animate({opacity: "show", top: "-60"}, "slow");
		}, function() {
		  $(this).next("em").animate({opacity: "hide", top: "-55"}, "fast");
		});
	

		$(".img-fade-box").fadeTo("slow", 0.2);
		$(".img-fade-box").hover(function(){
		$(this).fadeTo("slow", 0.9);
		},function(){
		$(this).fadeTo("slow", 0.2);
		});
		
		$(".thickbox").fadeTo("slow", 0.2);
		$(".thickbox").hover(function(){
		$(this).fadeTo("slow", 0.9);
		},function(){
		$(this).fadeTo("slow", 0.2);
		});


$("#tab-menu").tabs("#tabs > div", { effect: 'fade' });


	


});
