(function()
{ 

var currentTime = new Date();

// Take control of blog links and trigger each section function
  $.fn.blogLinks = function ()  { 
  	
	//alert('mark');
	
    $('#blog-links a').click(function(e){
      e.preventDefault();
	
	$('#content_con').load($(this).attr("href") + '?c=' + currentTime.getSeconds() + ' #content', function() {});
	
    });
	
  };
  
})(jQuery);
