// PRE-LOAD ROLLOVER IMAGES
if(Image)
{
	var img1 = new Image();
	img1.src = "/img/pagebar/printer_friendly_hover.gif";
	var img2 = new Image();
	img2.src = "/img/pagebar/tell_friend_hover.gif";
}

// ROLLOVER FUNCTIONS
function onPrinterFriendlyMouseOver(img)
{
	img.src = "/img/pagebar/printer_friendly_hover.gif";
}

function onPrinterFriendlyMouseOut(img)
{
	img.src = "/img/pagebar/printer_friendly.gif";
}

function onSTAFMouseOver(img)
{
	img.src = "/img/pagebar/tell_friend_hover.gif";
}

function onSTAFMouseOut(img)
{
	img.src = "/img/pagebar/tell_friend.gif";
}