/*
**************************************************************

	Name:		blink.js
	Author:		Mario Fisher
				www.liquidweb.co.za
	Purpose:	Blinking Text/Link
	Licence:	Free...as long as this credit is not deleted

**************************************************************
*/

var col = new String();
var x=1;
var y;
 
function blink() {
	if(x%2) {
		col = "rgb(255,0,0)";
	} else {
		col = "rgb(255,255,255)";
	}
 	aF.style.color=col;x++;
	if (x > 2) {
		x = 1
	}
	setTimeout("blink()", 500);
}
