// Paramount Bar
// Gumball Pointer

$(document).ready(function(){
	setTimeout('gumballPointer()',1000);
});

function gumballPointer() {
	$('#adPointer').animate({
	top:parseInt(-175),
		}, 500, function(){
		$('#adPointer').animate({
			top:parseInt(-190),
			}, 500, function(){
			$('#adPointer').animate({
				top:parseInt(-175),
				}, 500, function(){
				$('#adPointer').animate({
					top:parseInt(-190),
					}, 500, function(){
					$('#adPointer').animate({
						top:parseInt(-175),
						}, 500, function(){
						$('#adPointer').animate({
							top:parseInt(-500),
							}, 500
						);
					});
				});
			});
		});
	});
}
