jQuery(function(){
	//round corners
  $('.rounded').corners("11px transparent");
	
	//make entire div on Our Work page clickable
	$(".grantee").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	})
	
	//randomly selects one of three bird images for the individual grantee pages
	var totalNum = 3;
	var rndNum = Math.floor(Math.random() * totalNum);
	$("#granteeBird").html("<img class=\"png\" src=\"img/bird-grantee-" + rndNum  + ".png\" />");
	
});


Cufon.replace('h1, h2, h4, #mainNav li a, #homeRightBot li a' , 
							{ fontFamily: 'Dante' }
							);
Cufon.replace('h5, a.hubButton, a.boardButton, .grantee p, #footer p#illustratedBy, #footer p#siteBy, #footer a' , 
							{ fontFamily: 'Benton' , hover: true }
							);
