$(document).ready(initialFunction);
		
	function initialFunction(){
		$("#artfest").click(clickFunction);
		$("#israel").click(clickFunction);
		$(".banner .info, .longBanner .info, .person .iconExpanded").hide();
	}
	
	function clickFunction(){
			$(this).parent().children("div.info").toggle("fast");
	}