var titles = new Array(
	'Sean Duggan',
	'Jeff Struthers',
	'Lisa Rivard',
	'Denis Roussel',
	'Sandy-Jackson',
	'Priscilla-Fowler' );

var desc = new Array(
	'Sean Duggan portrays the softer side of people.' );

var path = new Array(
	'sean-duggan',
	'jeff-struthers',
	'lisa-rivard',
	'denis-roussel',
	'sandy-jackson',
	'priscilla-fowler' );

// do not edit anything below this line

var j = 0;
var p = titles.length;
var preBuffer = new Array();
for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = titles[i];
}
var currentArtist = Math.round(Math.random()*(p-1));

if( desc[currentArtist] ){
	description = desc[currentArtist];
}else{
	description = "";
}
backgroundImg = 'url(images/features/'+path[currentArtist]+'.jpg)';

jQuery.noConflict();

function showImage(){
	jQuery('#content').css( "background-image", backgroundImg );
	jQuery('#content').html('<div id="featureDesc"><h3>'+titles[currentArtist]+'</h3><p>'+description+' <a href="artists/'+path[currentArtist]+'.html">See More &raquo;</a></div>');
}

jQuery(document).ready(function(){
	showImage();
});