$(document).ready(function() {
	
	$("div.sponsorList div").click(function(){
		$("div.sponsorList p").hide();
		$(this).next().fadeIn("fast");
		//$(this).find("p").fadeIn("fast");
	});
	
	$("p.sponsorInfo").click(function(){
		$(this).hide();
	});
	
	/*
	$("html:not(.sponsorName)").click(function(){
		$("div.sponsorList p").hide();
	});
	*/

});