$(function(){
$(document).ready(function() {

$('div#idTagMarquee').height(65);
$('div#idTagMarquee').css({'overflow':'hidden'});
$('div#idTagMarquee div').height(100);
$('div#idTagMarquee div').css({'position':'relative'});

	var frameHght 	= 100; // set height of each frame of strip
	var frameNum	= 5; // set number for frames in strip
	var i = Math.floor(Math.random()*5);
	fRotate(); // runs the function once to get a random frame
	
	setInterval(function(){fRotate()}, 5000); // timed at 5 seconds per rotation
	
	function fRotate(){
		
		if(i > (frameNum-2)){i=-1}; i++; 
		x = frameHght*i;
		frameTop = "-"+x+"px";
		
		$('div#idTagMarquee div').fadeOut(100, function(){
		$('div#idTagMarquee div').css({'top':frameTop})
			.fadeIn(100);
			});
		};

});
});
