﻿$(document).ready(function() {
	var bg = $("div#bg");
	bg.hide();
	$(window).load(function() {
		bg.fadeIn("normal");
	});
	
	$("div#news").click(function() {
		document.location.href = "/pages/news&commentary.html";
	});
});
