// JavaScript Document
function roundTopCorners() {
try {
jQuery(".sideheader").corner("8px top");
}
catch(err){}//ie6 doesn't like this
} 
function hoverButton(imgDir){
	
	jQuery(".hoverbutton").hover(			   
      function () {
        jQuery(this).attr({ 
		src: imgDir + "/images/" + this.id + "-on.jpg"
		});

      }, 
      function () {
        jQuery(this).attr({ 
		src: imgDir + "/images/" + this.id + "-off.jpg"
		});
      }
    );
}