
/* START JQUERY STUFF FOR CHANGING THUMBNAIL ON ARTISTS PAGE */
var $j = jQuery.noConflict();
var introGif = '/wp-content/themes/dowling_original/i/thumbs_artist_page/thumb_intro.gif'

$j(document).ready(function() {

     $j('#huge-holder a').hover(function() {
          var newSrc = $j(this).attr('rel');
          $j('#thumbframe img').attr('src', newSrc);
     },
	 function(){
	 	  $j('#thumbframe img').attr('src', newSrc);	
	 });
	 
	 // SET UP SMOOTHER SCROLLING ON ALL ARTISTS PAGE
	$j('#artists-traverse').localScroll({
		duration: 1150,
		target: '#huge-holder'	
	});
	
	// SET UP HOME SLIDESHOW
	$j('#home-slideshow').cycle({ 
		speed:  4000, 
		timeout: 5000, 
		slideExpr: 'img'
	});
	
	 // SET UP LIGHTBOX EFFECT
	 if ($j('a.fancybox').length) {
		
		$j("a.fancybox").fancybox({
			'titlePosition': 'inside',
			'overlayOpacity': .9
		});
	}	
	
	
});

