$(document).ready(function() {
	$("span.switchbutton").hover(
		function() {
			$(this).css("cursor","pointer");
		},
		function() {
			$(this).css("cursor","normal");
		} 
	);
	$("span.switchbutton").click(function() {
		$("img.joinUsButton").attr('src','http://motionball.fcvhost.com/wp-content/themes/motionball/images/home-sub-joinus2.gif');
		$("div.joinOptions").fadeIn(400);
		$("p.intro").css("display","none");
		$("div.joinOptions").css("display","block");
	});
});