$(document).ready(function () {
	
	var w=$(document).width();
	var h=$(document).height();

	$("#bg").css("width",w+"px");
	$("#bg").css("height",h+"px");
	
})

$(window).resize(function() {
	
	var w=$("#logo").width();
	var h=$("#logo").height();

	$("#bg").css("width",w+"px");
	$("#bg").css("height",h+"px");
	
});
