	window.i = 1;
function image_rotate(id){
	img = {
				0: {
			src:'templates/crosscountysheriff.org/uploads/thumb_a9458eb7501ed35e9837edeb9b501d02.jpg',
			alt:'Cross County Court House'
		},				1: {
			src:'templates/crosscountysheriff.org/uploads/thumb_b112d99af36f64f170f92484aee1dcfb.jpg',
			alt:''
		},				2: {
			src:'templates/crosscountysheriff.org/uploads/thumb_7e5c88e7fee03033d463b2d61f0950b8.jpg',
			alt:''
		},				3: {
			src:'templates/crosscountysheriff.org/uploads/thumb_425205080f1e52d95191b978e5848037.jpg',
			alt:'Cross County High School'

		}			
	};

	if(window.i >= 4){
		window.i = 0;
	}
	
	if(img[(window.i)]['alt'] == ''){
		$("#rotate_bkg").hide();	
	}else{
		$("#rotate_bkg").show();
	}
	$("#imageContainer").fadeOut(500, function(){
		$('#rotate_cap').html(img[window.i]['alt']);
		$(this).css({
			'backgroundImage': 'url('+ img[window.i]['src'] + ')'
		}).fadeIn(500,function(){
			window.i = window.i + 1;	
		});
	});
}

