//document.write('<link href="/css3.css" rel="stylesheet" type="text/css" />');

$(document).ready(function() {
  window.setInterval("homepagefoto()",3000);
});

var current = 0;
function homepagefoto(){
 
 if( counthomephotos != -1 ){
	next = current +1;
	if( next == counthomephotos){
	  next = 0;
	}	
	 
	$('#homefoto'+ next ).fadeIn('slow', function(){
		$('#homefoto' + current ).css('display', 'none');
		current = next;
	})
 }
}
