var interval_id = 0;
function startInterval(){
	interval_id = setInterval( "slide('next')", 10000 );
}

$(document).ready(function() {
	$('#passage_of_todays_pick_ball').html('<img src="'+SiteAdi+'images/ball_small_act.gif" width="13" height="10" alt="Small Times to Book Cheap Hotels" title="Last Minute International Hotel Booking on BookingBest.com"/>'+
			'<img src="'+SiteAdi+'images/ball_small_pass.gif" width="13" height="10" alt="International Hotel Booking" title="The most wide and cheapest international hotel booking"/>' + 
			'<img src="'+SiteAdi+'images/ball_small_pass.gif" width="13" height="10" alt="International Hotel Booking" title="The most wide and cheapest international hotel booking"/>' + 
			'<img src="'+SiteAdi+'images/ball_small_pass.gif" width="13" height="10" alt="International Hotel Booking" title="The most wide and cheapest international hotel booking"/>' + 
			'<img src="'+SiteAdi+'images/ball_small_pass.gif" width="13" height="10" alt="International Hotel Booking" title="The most wide and cheapest international hotel booking"/>');
	startInterval();
});


	var active_div_no = 1;
	var ball_count = -1;
	var button_clicked = false;

	function slide(direction){

		//clearInterval(interval_id);

		var ball_html = '';
		var $active = $('#div_'+active_div_no)
		if(direction=="next")
		   	active_div_no++;
		if(direction=="prev")
		   	active_div_no--;	   	
	   	if(active_div_no>5) active_div_no = 1;
	   	if(active_div_no<1) active_div_no = 5;
		var $next = $('#div_'+active_div_no);
		$next.css({opacity: 0.0})
	        .addClass('active')
	        .animate({opacity: 1.0}, 1000, function() {
	        	$active.removeClass('active last-active');
	        	for(var i=1;i<=active_div_no;i++){
		    		ball_html += '<img src="'+SiteAdi+'images/ball_small_act.gif" width="13" height="10" alt="Hotel Booking Form" title="Los Angeles, London, Miami Hotels Booking"/>';
		    	}
		    	for(var j=i;j<=5;j++){
		    		ball_html += '<img src="'+SiteAdi+'images/ball_small_pass.gif" width="13" height="10" alt="International Hotel Booking" title="The most wide and cheapest international hotel booking"/>';
		    	}
	            $('#passage_of_todays_pick_ball').html(ball_html);
	            //startInterval();
	        });

	}
