function init()
{
	$("#div_dialog").dialog
		(
			{ autoOpen: false },
			{ bgiframe: true }
		);

	$("#div_alert").dialog
		(
			{ autoOpen: false },
			{ bgiframe: true }
		);

	$(function()
	{
		// style button divs (especially for IE6)
		$(".button_text").hover(function()
		{
			$(this).css("cursor", "pointer");
			$(this).removeClass("button_text");
			$(this).addClass("button_text_hover");
		},
			function()
			{
				$(this).css("cursor", "normal");
				$(this).removeClass("button_text_hover");
				$(this).addClass("button_text");
			}
		);
	});
}
