$(document).ready(function() {
	/*$('.newsListing').animate({opacity: 1.0}, 200, "swing", function () {
		$('.newsListing').jScrollPane({scrollbarWidth:10, scrollbarMargin:10, dragMaxHeight:36});
	});
	
	$('.calendar').animate({opacity: 1.0}, 200, "swing", function () {
		$('.calendar').jScrollPane({scrollbarWidth:10, scrollbarMargin:10, dragMaxHeight:36});
	});
	
	$('.artistList').animate({opacity: 1.0}, 200, "swing", function () {
		$('.artistList').jScrollPane({scrollbarWidth:10, scrollbarMargin:10, dragMaxHeight:36});
	});*/
	
	prepareImageSwap(document.body);
	
	$('#image_rotate').innerfade({
		speed: 'slow',
		timeout: 6000,
		type: 'sequence',   
		containerheight: '480px'  
	});
	
	$(".artistLink").hover(
	  function () {
	  	$(".artistMain").hide();
	  	className = $(this).attr("id");
	  	$("."+className).show();
	});
});
        
         