$(document).ready(function(){
	
	// Hide all of the descriptions //
	$(".information").css('display','none');
	
	// Give the info image a link cursor //
	$(".info").css('cursor','pointer');
	
	// Get the the id of the info button, get the number, and use this to toggle the description //
	$(".info").click(function() {
		var id = $(this).attr('id');
		var newid = "information" + id.substr(4);
		$("." + newid).animate({height: 'toggle', opacity: 'toggle'}, "slow");		
	});
	
});
