
var rotator_current_item=0;
var rotate_text 	= new Array("Click here for RSS link","We have a NEWSLETTER - sign in !","Follow us on Twitter !","Check out our iPhone/iPod Touch Game !","Join our Facebook group now !","now, you can download your purchased products from your Account - login in top right of this site");
var rotate_url 	= new Array("http://www.motionvfx.com/rssnews.xml","http://www.motionvfx.com/newsletter.html","http://twitter.com/motionVFX","http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=333282109&amp;amp;mt=8","http://www.facebook.com/group.php?gid=60569906623","javascript:void(0)");
var rotate_target = new Array("","","","","","");
var rotator_items=rotate_text.length;

function rotator_cycle() {
	if(rotator_current_item==rotator_items) rotator_current_item=0;
	var rrr=document.getElementById('rotator_link');
	rrr.innerHTML 	= rotate_text[rotator_current_item];
	rrr.href 		= rotate_url[rotator_current_item]
	rrr.target 		= rotate_target[rotator_current_item]
	rotator_current_item++;
	setTimeout("rotator_cycle()",5000);
}

rotator_cycle();
