(function($) { 
	$.getJSON('http://upcoming.yahooapis.com/services/rest/?method=user.getWatchlist&api_key=522ae03601&user_id='+upcoming_id+'&show='+kdaj+'&format=json&callback=?', function(data){
		if (data) {
			$.each(data.rsp.event, function(i, event){
				var leto = event.start_date.substring(2,4);
				var mesec = event.start_date.substring(5,7);
				var dan = event.start_date.substring(8,10);
				if(i < numshows) {
					if (kdaj == "past") 
					{ $('#listkoncerti').prepend("<div class='koncert'><span class='date'>"+dan+"."+mesec+"."+leto+"</span>"+event.venue_city+" / "+event.venue_name+"</div>");}
					else
					{ $('#listkoncerti').append("<div class='koncert'><span class='date'>"+dan+"."+mesec+"."+leto+"</span>"+event.venue_city+" / "+event.venue_name+"</div>");}
				} 				
			});
		} 
		else 
		{
		$('#listkoncerti').html="<div class='koncert'><h4> Trenutno ni napovedanih koncertov ...</h4></div>";
		}
		
	});
		

})(jQuery);
