$(document).ready(function(){
	
	$(".ignore_artist").click(function(){
		artist_id = $(this).attr('artistid');
		$.get("/ra/"+artist_id);
		$("tr.artist_tr_"+artist_id).fadeOut("100");
	});
	
	$("#user_artist_list").click(function(){
		$("#dialog").dialog({
			modal: true,
			overlay: {
				opacity: 0.5,
				background: "black"
			},
			buttons: {
				"Signup now": function() {
					window.location.href = "/signup";
					$(this).dialog("close");
				}, 
				"Login": function() {
					window.location.href = "/login";
					$(this).dialog("close");
				},
				"Cancel": function() {
					$(this).dialog("close");
				}
			}
		});
		return false;
	});

});

