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

	$("#div_alert").dialog
		(
			{ autoOpen: false },
			{ bgiframe: true }
		);
		
	$(function()
	{
		// make sub menu close on mouseout
		$(".div_sub_menu_panel").hover(function()
		{
	
		},
			function()
			{
				$(this).stop(false, true).fadeOut("fast");
			}
		);
		// make all submenu's close on mouseover
		$(".menu_header_empty, .menu_header_side, .td_main_hr_empty").hover(function()
		{
			closeAllSubMenus(0);
		});
		
		// 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");
			}
		);
	});
}


