$(document).ready(function() {

	$('a.popup').colorbox({
		initialHeight: '300px',
		initialWidth: '150px',
		// innerWidth: '700px',
	});

	// hack to fix rollovers on artist popup page
	$('a.popup').hover(function() {
		$(this).css("color", "#323232")
	}, function() {
		$(this).css("color", "#A42BB4")
	});

});




