$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
	initNewsBrowser();
});

function initNewsBrowser()
{
	$(".news-browser-clickable").click(function(){
		$("#news-container").load($(this).attr("rel"),{},function (tt){
				initNewsBrowser();
				initGlobalAnims();
			});
		return false;
	});
}
