$(document).ready(function(){

	function hpImage(){
	
		var imageList = new Array("http://www.educationcounts.govt.nz/__data/assets/image/0009/73827/BES-SchoolLeadership.gif", "http://www.educationcounts.govt.nz/__data/assets/image/0010/73828/BES-TeKotahitangaDVD.gif", "http://www.educationcounts.govt.nz/__data/assets/image/0011/73829/ngahaeata2006-07.gif", "http://www.educationcounts.govt.nz/__data/assets/image/0003/73830/ngahaeata2007-08.gif", "http://www.educationcounts.govt.nz/__data/assets/image/0004/73831/PEP-Monitoring-2006.gif", "http://www.educationcounts.govt.nz/__data/assets/image/0005/73832/profile2005.gif"); 

		var randomURI = imageList[Math.floor(Math.random()*imageList.length)];

		$('.publications').append('<img height="150" width="115" alt="#" src="' + randomURI + '" class="pub-feature">')
	
	}
	
	if($('body#home')){
		hpImage();
	}
	
	$('.popular-link-box.odd, .latest').each(function(){
	
		if($(this).height() > $(this).next().height()) {
			$(this).next().height($(this).height());
		} else {
		$(this).height($(this).next().height());
	}
	
	})
	
})
