


//alert(location.href.indexOf('/artists/'));

if (location.href.indexOf('/artists/') > 0) {
	//alert('here');
	var artists = new Array(12);
	artists['8'] = 'jimpster';
	artists['3'] = 'swell_session';
	artists['6'] = 'only_freak';
	artists['10'] = 'shur-i-kan';
	artists['13'] = 'trevor_loveys';
	artists['9'] = 'palm_skin';
	artists['11'] = 'square_one';
	artists['12'] = 'dave_taylor';
	artists['4'] = 'robert_strauss';
	artists['2'] = 'mike_monday';
	artists['7'] = 'jake_childs';
	artists['14'] = 'black_joy';
	
	for (key in artists) {
		var artist = artists[key];
		if (location.href.indexOf(artist) > 0) {
			var num = key;
			break;
		}
	}
} else {
	var num = Math.floor(Math.random() * 16 + 1 );
}

function mainImage() {
	document.write('<img src="/_gfx/headers/'+ num +'_large.jpg" alt="" width="761" height="208" border="0">');
}


function dripImage() {
	document.write('<img src="/_gfx/headers/'+ num +'_small.jpg" alt="" width="194" height="98" border="0">');
}