
function highlightTypeGeneral (event) {
	$('newsTypeGeneral').original = $('newsTypeGeneral').src;	
	$('newsTypeGeneral').src = "/view/images/icons/Icon-wow-96x96_glow.png";
}

function highlightTypeTBC (event) {
	$('newsTypeTBC').original = $('newsTypeTBC').src;
	$('newsTypeTBC').src = "/view/images/icons/Icon-wow_tbc-96x96_glow.png";
}

function highlightTypeWotLK (event) {
	$('newsTypeWotLK').original = $('newsTypeWotLK').src;
	$('newsTypeWotLK').src = "/view/images/icons/Icon-wow_wotlk-96x96_glow.png";
}


function downlightTypeGeneral (event) {
	$('newsTypeGeneral').src = $('newsTypeGeneral').original;
}

function downlightTypeTBC (event) {
	$('newsTypeTBC').src = $('newsTypeTBC').original;
}

function downlightTypeWotLK (event) {
	$('newsTypeWotLK').src = $('newsTypeWotLK').original;
}



$('newsTypeGeneral').onmouseover 	= highlightTypeGeneral;
$('newsTypeTBC').onmouseover 			= highlightTypeTBC;
$('newsTypeWotLK').onmouseover 		= highlightTypeWotLK;
$('newsTypeGeneral').onmouseout 	= downlightTypeGeneral;
$('newsTypeTBC').onmouseout 			= downlightTypeTBC;
$('newsTypeWotLK').onmouseout 		= downlightTypeWotLK;


