$(document).ready(function(){	$('p#contribution').css('display','block');	$('#contributionInfo').hide();	$('p#contribution a').click(function() {		$('#contributionInfo').slideDown(1000);		return false;	});		var imgWrapper = $('.slideshow > img');	// only show the first image, hide the rest	imgWrapper.hide().filter(':first').show();		$('ul.recentlist li a').click(function () {			// check if this item doesn't have class "current"		// if it has class "current" it must not execute the script again		if (this.className.indexOf('current') == -1){			imgWrapper.hide();			imgWrapper.filter(this.hash).fadeIn(500);			$('ul.recentlist li a').removeClass('current');			$(this).addClass('current');		}		return false;	});					/* quotes crossfade on Homepage */	$('#quotes').innerfade({ 		speed: 2000, 		timeout: 12000, 		type: 'sequence', 		containerheight: '240px'	}); 	/* image crossfade on Homepage */	$('#preview').innerfade({ 		speed: 4000, 		timeout: 6000, 		type: 'sequence', 		containerheight: '420px'	}); 			$('body#home ul#nav_features li#nav_home a').addClass('selected');	$('body#q_and_a ul#nav_features li#nav_q_and_a a').addClass('selected');	$('body#the_levy ul#nav_features li#nav_levy a').addClass('selected');	$('body#get_involved ul#nav_features li#nav_involvement a').addClass('selected');	$("li.coming_soon a").hover(function() {	  $(this).next("em").animate({opacity: "show", top: "-51"}, "slow");		}, function() {	  $(this).next("em").animate({opacity: "hide", top: "-61"}, "fast");	});	$("p.coming_soon a").hover(function() {	  $(this).next("em").animate({opacity: "show", top: "-110"}, "slow");		}, function() {	  $(this).next("em").animate({opacity: "hide", top: "-120"}, "fast");	});	$(".coming_soon a").click(function() {		return false;	});		});