/* JavaScript Document */

$(function(){

	$('#btn_pages').button().click( function(){
		location.href = 'http://www.fultex.jp/pages/';
	});
	$('#btn_topics').button().click( function(){
		location.href = 'http://www.fultex.jp/pages/topics/';
	});
	
	
	$('#btn_logout').button().click( function(){
		
		$('#DialogConfirm .message')
			.html('ログアウトしてよろしいですか？');
		$('#DialogConfirm').dialog({
			bgiframe: true, modal: true, resizable : false, show : "slide", close : "slide", width : "600px",
			buttons: {
				"ログアウトする": function(){
					$(this).dialog("destroy");
					location.href = 'http://www.fultex.jp/account/logout/';
				},
				"キャンセル": function(){
					$(this).dialog("destroy");
				}
			}
		});
	});
});
