$(window).load(function(){ 	// jQuery functions to initialize after the page has loaded. 


	if (js_array.length > 0) {
//		alert(js_array[0]["artistName"]);
	}
	
	$("#results a.artist, a.album, a.track").click(
		
		function(){
			
			var type = $(this).attr("class"); 
			
			var my_rel = $(this).attr("rel");
//			alert("my_rel = "+my_rel)
			$("#urlBox").load("results.php", {'type': type, 'js_array[]': js_array[my_rel]} );
			

			
		});
	
//	alert("jquery loaded");

});

