// Input type submit hover functions - can't access button.src

function medArrowMouseover(button)
{
	button.src = 'images/buttons/left_arrow_med_pink.png';
}

function medArrowMouseout(button)
{
	button.src = 'images/buttons/left_arrow_med_blue.png';
}

function bigArrowMouseover(button)
{
	button.src = 'images/buttons/right_arrow_big_pink.png';
}

function bigArrowMouseout(button)
{
	button.src = 'images/buttons/right_arrow_big_blue.png';
}

function rightBlackArrowMouseOver(button)
{
	button.src = 'images/buttons/right_arrow_small_black_roll.png';
}

function rightBlackArrowMouseOut(button)
{
	button.src = 'images/buttons/right_arrow_small_black.png';
}

function flashAvailable(){ return DetectFlashVer(8, 0, 0); }

function flashAvailable(major, minor, revision){ return DetectFlashVer(major, minor, revision); }
