
$(document).ready(function(){
	//main();
	rotateImages(Math.floor(Math.random()*6));
});
		function main()
		{
			$("#print_promos").makeFloat({x:760,y:264, speed:"slow"});
		}		
		
		function rotateImages(current_index){
			
			index=current_index+1;
			var images = $('#print_promos img');
			if(index>images.length-1)
				index=0;
							
			$('#print_promos img:eq(' + current_index + ')').fadeOut('slow',function () {
				$('#print_promos img:eq(' +  index + ')').fadeIn('slow');
		  });

			//, function(){'#print_promos img:eq(' + index + ')').fadeIn('slow');});
											   
			setTimeout("rotateImages(" + index + ")",7000);
								   
		}
