//<![CDATA[
$(document).ready(function(){
	$(function() {
		$(".announcements").jCarouselLite({                      
			btnNext: ".next",
			btnPrev: ".prev",            
			auto:5000,
			pause: ".play-pause",
			speed:400,
			start: 0,
			visible:1,
			btnGo:
			[".control .1", ".control .2",
			".control .3", ".control .4",
			".control .5", ".control .6",
			".control .7", ".control .8",
			".control .9", ".control .10",
			".control.11", ".control .12"]

		});
	});
	$(".play-pause").click(function()
	{
		if ($(".play-pause").hasClass("paused"))
		{
			$(this).html("<a href='#' onclick='return false'><img src='images/pinpoint-leader/layout/btn_play.gif' alt='Play'/></a>");
		}
		else
		{
			$(this).html("<a href='#' onclick='return false'><img src='images/pinpoint-leader/layout/btn_pause.gif' alt='Pause'/></a>");
		}
	});
	
});
//]]>


