$(function() { 
	var timer = setInterval(rotatehome, 8000);
});
var max = 7;
var cur = 1;
function rotatehome() { 
	var next = cur;
	while(next == cur) {
		next = Math.floor(Math.random()*(max))+1;
	}
	
	var nextimg = '/images/brach-design-homepage0'+next+'.jpg';
	$('<img />').attr('src', nextimg).load(function() { 
		$('#homepageimage').after($('<div  />').attr('id','tmphomepageimage').css('opacity','0').css('backgroundImage', 'url('+nextimg+')').css('width','1156px').css('height','764px').css('position','absolute'));
		$('#homepageimage').animate({ opacity:0},2000);
		$('#tmphomepageimage').animate({ opacity:1 },2000, function () {
		$('#homepageimage').remove(); $('#tmphomepageimage').attr('id','homepageimage');
		});
	});
	cur = next;
}
