jQuery((document)).ready(function(){
		jQuery(".divisionLogo").each(function(){
			var obj_ref = this;
			jQuery((this)).find("a").each(function(){
				this.onmouseover = function(){
					jQuery((obj_ref)).find(".label").find("a").css("color","black");
					jQuery((obj_ref)).find(".sectionImage").each(function(){
						var current_image = this.src;
						var new_image = this.src.replace(".png","_over.png");
						this.src = new_image;
					});
				}
				this.onmouseout = function(){
					jQuery((obj_ref)).find(".label").find("a").css("color","#999999");
					jQuery((obj_ref)).find(".sectionImage").each(function(){
						var current_image = this.src;
						var new_image = this.src.replace("_over.png",".png");
						this.src = new_image;
					});
				}
			});
		})
	});
