jQuery(document).ready(function() {

imgArray2 = new Array(); 

imgArray2[0] = new Image();
imgArray2[0].src = 'http://www.dendeemusic.com/images/velveeta_room.jpg';
imgArray2[1] = new Image();
imgArray2[1].src = 'http://www.dendeemusic.com/images/downtown-austin-1.jpg';
imgArray2[2] = new Image();
imgArray2[2].src = 'http://www.dendeemusic.com/images/downtown_austin-2.jpg';
imgArray2[3] = new Image();
imgArray2[3].src = 'http://www.dendeemusic.com/images/downtown_austin-4.jpg';
imgArray2[4] = new Image();
imgArray2[4].src = 'http://www.dendeemusic.com/images/downtown_austin-5.jpg';
imgArray2[5] = new Image();
imgArray2[5].src = 'http://www.dendeemusic.com/images/downtown_austin-6.jpg';
imgArray2[6] = new Image();
imgArray2[6].src = 'http://www.dendeemusic.com/images/downtown_austin-7.jpg';
imgArray2[7] = new Image();
imgArray2[7].src = 'http://www.dendeemusic.com/images/downtown_austin-8.jpg';
imgArray2[8] = new Image();
imgArray2[8].src = 'http://www.dendeemusic.com/images/downtown_austin-9.jpg';

var numImages = 9;
var fadeTime = 2000; 
var fadeOutTime = 2000;

var count = Math.round(Math.random()*(numImages-1));

jQuery('#austinImagebox').css('background','url("' + imgArray2[count].src + '")');
jQuery('#austinImagebox img').attr('src',imgArray2[count].src).fadeIn(fadeTime, _nextImg());

function _nextImg() {
count++;
if (count>(numImages-1)) {
	count=0;
}

jQuery('#austinImagebox').css('background','url("' + imgArray2[count].src + '")');

jQuery('#austinImagebox img').fadeOut(fadeOutTime, function() {
	jQuery('#austinImagebox img').attr('src',imgArray2[count].src);
	jQuery('#austinImagebox img').fadeIn((fadeTime), function() {
			_nextImg()		
		});
	});
}

});
