// JavaScript Document

$(document).ready(function() {
  $('ul#secondary-nav li a, ul#planning-nav li a, ul#treatment-nav li a').hover(function() {
	$(this).addClass('hover');
	$(this).css('color','#fff');
	}, function() {
	$(this).removeClass('hover');
	$(this).css('color','#262324');
  });

	// add dotted border to the bottom of treatment-nav ul
	$('ul#treatment-nav li:last a').addClass('last');
	
	// remove border at the bottom of recent-headlines ul
	$('ul#news-releases li:last').addClass('last');
	
	// remove border at the bottom of recent-headlines ul
	$('ul#recent-headlines li:last a').addClass('remove-border');

	// jQuery.pngFix for ie5.5 and ie6
	$(document).pngFix(); 
});