/*****************************************************************************

	AWARDS.JS
	Code to manage the awards page.
	06/08 - Timothy Krukowski for Primum Marketing Communications & gMed. Inc.

 *****************************************************************************/ 

$(document).ready(function() {	
	//grab both the text and the image sets
	var awardsHeadings = document.getElementById("Content").getElementsByTagName("p");
	var awardsLogos = document.getElementById("Sidebar").getElementsByTagName("img");
	
	//first paragraph doesn't have an image to go with it	
	for( var i = 0; i < awardsLogos.length; i++ ) {
		awardsLogos[i].style.top = awardsHeadings[i].offsetTop + "px";
	}
	
	$('#Sidebar').toggleClass('hide');	
});
