$(document).ready(function() {
	$('#share-price-output').each(function(){		
		$(this).html('Loading...');			
		$.getScript('http://online.hemscottir.com/ir/epo/feed.jsp?type=js', function(){
			//$('#share-price-output').html(prices + 'p<br/>Change Today (' + change + 'p)<br/>' + dateddmmmyyyy)
			if(change > 0){
				changeclass = "up";	
			} else if(change < 0) {
				changeclass = "down";	
			} else {
				changeclass = "same";
			}
			$('#share-price-output').html('Today\'s stock information<br /><span class="price">' + prices + 'p</span> &raquo; <span class="change ' + changeclass + '">' + change + 'p</span><br />as of ' + dateddmmmyyyy)
		});			
	});
});
