$(document).ready(function(){
	$('#region_warning_dialog').dialog({
		draggable:false,
		resizable:false,
		bgiframe:true,
		modal:true,
		autoOpen:true,
		height:420,
		width:540
	});
	$('#stay_here_for_ever').click(function() {
		var exdate=new Date();
		exdate.setDate(exdate.getDate() + 1825);
		document.cookie="region_lock=true; expires="+exdate.toUTCString();
		$('#region_warning_dialog').dialog('close');
	});
	$('#stay_here_for_now').click(function() {
		document.cookie="region_lock=true;";
		$('#region_warning_dialog').dialog('close');
	});
	$('#change_region').click(function() {
		window.location = $(this).attr("app_path") + "change_region.php?id=" + $(this).attr("category_id") + "&dest=" + $(this).attr("dest_domain");
	});
	$('.wui_button').wmui_buttonize();
});
