/*****************************************************************************

	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");
		
	for( var i = 0; i < awardsLogos.length; i++ ) {
		awardsLogos[i].style.top = awardsHeadings[i].offsetTop + "px";
		//hack to adjust ONC-ATCB section cause the image is significantly taller than the text
		if (awardsLogos[i].id == "imgONC-ATCB") {
			$(awardsHeadings[i]).prev().css("margin-top", "30px");
			$(awardsHeadings[i]).css("margin-bottom", "40px");
		}
	}
	
	$('#Sidebar').toggleClass('hide');	
});

