$(document).ready(function() {

	jQuery.event.add(window, "load", backgroundResize);
	jQuery.event.add(window, "resize", backgroundResize);

	function backgroundResize() {

		var s_h = $(window).height();
		var s_w = $(window).width();

		$("#dot").css("width", s_w);
		$("#dot").css("height", s_h);
		$("#content").css("width", s_w);
		$("#content").css("height", s_h);

	}

});

$(document).ready(function() {
	$("#index_bg").ezBgResize();
});

$(document).ready(function() {
	$("a.tooltip").tooltip({
		track:true,
		fade:50,
		showBody: " - ",
		showURL: false
	});
});
