window.addEvent('domready', function(){



	
	

		$$('#HEADERP tr').addEvent("mouseenter",function () {
													var thisid=$(this).id;
					
													$(thisid).setStyle("background-color","#ffffff");
													$$('#'+thisid+' a').removeClass("WHITE");
													$$('#'+thisid+' a').addClass("PINK");
		
		
		});
		
		
		$$('#HEADERP tr').addEvent("mouseleave",function () {
													var thisid=$(this).id;
											$(thisid).setStyle("background-color","");
											$$('#'+thisid+' a').addClass("WHITE");
											$$('#'+thisid+' a').removeClass("PINK");
											
		
		});
		





});
