$(document).ready(function() { 

		if ( $('#home-images').length > 0 ) {
			$.get( "/home_images?", 
				   function(data){
					   var items = data.split("\n");
				   
					   $.each(items, function ( k, v ) {

							   if ( v == '/6223.jpg') {
								   s = '<div class="home-image" style="background:url(' + v + '); "><a href="/safetynet"><span>Safetynet</span></a></div>';
							   } 
							   else {
								   s = '<div class="home-image" style="background:url(' + v + '); "></div>';
							   }
							   $('#home-images').append(s);
						   });

					   $('#home-images .home-image').hide();
					   $('#home-images .home-image:first-child').show();
					   $('#home-images .home-image:first-child').addClass('home-image-active');
					   setInterval ( 'HomeRotate();', 4000 );
					   
				   });
		}

	});


function HomeRotate() {
 	var e = $('#home-images .home-image-active').next();
	if ( e.length == 0 ) {
		e = $('#home-images .home-image:first-child');
	}

//   	$('#home-images .home-image-active').fadeOut( 1000, function() {
// 			$('#home-images .home-image-active').removeClass('home-image-active');
// 			$(e).show();
// 		    $(e).addClass('home-image-active');
// 		});

  	$('#home-images .home-image-active').fadeOut( 1000, function() {
			$('#home-images .home-image-active').removeClass('home-image-active');
			$(e).fadeIn( 1000, function() {
					$(e).show();
				});
		    $(e).addClass('home-image-active');
		});

}


function log ( s ) {
	if ( $('#log').length == 0 ) {
		$('#background').prepend('<div id="log" style="background: #fc0;">C</div>');
	}
	$('#log').html(s);
}
