// JavaScript Document
    ct = 0;
	var head = new Array();
		head[0] = '<span style="color:red">Click Here:</span> Exclusive Medical Sales Jobs from the Nation&#146s Best Recruiters';
		head[1] = '<span style="color:red">Click Here:</span> Where the &quot;A-Team&quot; medical sales reps find great jobs!';
		head[2] = '<span style="color:red">Click Here:</span> More six-figure jobs than any other board!';
	HeadCt = head.length();
	function rotate(){		
		document.getElementById("gms_banner").innerHTML = head[ct];
		
		ct = (++ct);
		if (ct == 3)
			{
			 ct = 0;
			}		
		t = setTimeout('rotate()',5000);
		}
