$(document).ready(function(){
	$("#infoblock div").click(function () {
		var url = $(this).find("a").attr("href");
		window.location = url;
	});
	
	$.ajax({ 
  	url: "http://www.traderouter.nl/includes/ticker.php", 
  	context: document.body, 
  	success: function(data){
      $("#liveprices").append(data);
    }
  });
	
});
