// =================================================================================================
// Functions for javascript image effects
// 2007.01.22 Crow
// =================================================================================================

// -------------------------------------------------------------------------------------------------
// Crow's Function to create image rollovers (on mouseover / mouseout)
// -------------------------------------------------------------------------------------------------

function image_rollover(elementID, state, ID) {
	var thisImg = elementID;
	if (ID) { thisImg += ID; }
	document.getElementById(thisImg).src = eval(elementID+"_"+state+".src");
}

