jQuery(document).ready(function($) {
	//alert("Getting latest frequencies...");
	$.getJSON('http://m0vfc.co.uk/arran2011/latestFrequencies.php?jsoncallback=?',
		{
			something: "blah"
		},
		function(data) {
			$('#freq').html(data.html);
		}
	);	
});
