/* menueffect */
jQuery(function() {
	jQuery("p:empty").remove();
	
	jQuery("#nav").superfish({
		autoArrows: false
	});
	
	if(jQuery("#theArtists li").length > 0) {
		jQuery("#theArtists li h4").each(function() {
			jQuery(this).html($(this).html().replace("Private: ", ""));
		});
		
		jQuery("#theArtists li.artist_607 h4").html($("#theArtists li.artist_607 h4").html().replace("&amp; Nash", "<span>&amp; Nash</span>"));
		jQuery("#theArtists li.artist_608 h4").html($("#theArtists li.artist_608 h4").html().replace("Buffet", "<span>Buffet</span>"));
		jQuery("#theArtists li.artist_611 h4").html($("#theArtists li.artist_611 h4").html().replace("Guy", "<span>Guy</span>"));
		jQuery("#theArtists li.artist_662 h4").html($("#theArtists li.artist_662 h4").html().replace("Groom", "<span>Groom</span>"));
		jQuery("#theArtists li.artist_612 h4").html($("#theArtists li.artist_612 h4").html().replace("Jacket", "<span>Jacket</span>"));
		jQuery("#theArtists li.artist_609 h4").html($("#theArtists li.artist_609 h4").html().replace("Pogues", "<span>Pogues</span>"));
	}
});



















