$(document).ready(function() {
 $('.newsLink').click(function() {
 $('#newsContentLoading').css({ opacity: 0.7, 'width':$(document).width(),'height':$(document).height()});
  $('#newsContentLoading img').css({opacity: 0.7});
		$("#newsContent").fadeTo("fast", 0.33);
  var id = this.id;

  $.getJSON(host + "ajax-news.php?news=" + escape(id),
	 function(data, success){
   if(success) {
   	$('#newsContentLoading').css({ opacity: 0, 'width':0,'height':0});
    $("#newsContent").html(data.content).fadeTo("slow", 1,
    function() {
        $(this).css('filter','');
    });					
    document.title = "Celebrating the Tour de France .:. Cardiff's newest Trek Bikes, Leopard Trek, and only Genesis Bikes dealer; also Kansi Folding, Pashley, Raleigh, Cooper, Gary Fisher, Salsa, Surley, Felt, Ridgeback, MyVelo .:. Bike Shed Wales .:.  Bicyle sales and repair; Cathedral Road, Pontcanna, Cardiff .:. The Friendly Bike Shop .:. " + data.title;
	 	}
			else {
		  $('#newsContentLoading').css({ opacity: 0, 'width':0,'height':0});
		  $("#newsContent").fadeTo("fast", 1);
 		}
		});

		pageTracker._trackPageview($(this).attr('href'));
  return false;
 });
});
