// JavaScript Document
			$(function(){

				// Dialog			
				$('#dialog').dialog({
					bgiframe: true,				
					autoOpen: false,
					resizable: false,					
					width: 350,
					modal: true,					
					overlay: {
						backgroundColor: '#000',
						opacity: 0.5
					},					
					buttons: {
						"Ok": function() { 
						//	$(this).dialog("close"); 
						    window.location = "cancel_account";
							
						}, 
						"Cancel": function() { 
							$(this).dialog("close"); 
						} 
					}
					
				});							
				
				$('#contact_item').dialog({
					bgiframe: true,				
					autoOpen: false,
					resizable: false,					
					width: 450,
					modal: true,					
					overlay: {
						backgroundColor: '#000',
						opacity: 0.5
					},					
					buttons: {}
					
				});
				
				$('#contact_item_out').dialog({
					bgiframe: true,				
					autoOpen: false,
					resizable: false,					
					width: 500,
					modal: true,					
					overlay: {
						backgroundColor: '#000',
						opacity: 0.5
					},	
					buttons: {}
				
					
					
				});				
				
				$('#report_item').dialog({
					bgiframe: true,				
					autoOpen: false,
					resizable: false,					
					width: 400,
					modal: true,					
					overlay: {
						backgroundColor: '#000',
						opacity: 0.5
					},					
					buttons: {}
					
				});				
				
				$('#contact_shop').dialog({
					bgiframe: true,				
					autoOpen: false,
					resizable: false,					
					width: 500,
					modal: true,					
					overlay: {
						backgroundColor: '#000',
						opacity: 0.5
					},					
					buttons: {}					
				});	
				
				$('#contact_shop_out').dialog({
					bgiframe: true,				
					autoOpen: false,
					resizable: false,					
					width: 500,
					modal: true,					
					overlay: {
						backgroundColor: '#000',
						opacity: 0.5
					},					
					buttons: {}
					
				});					

				// Dialog Link
				$('#dialog_link').click(function(){
					$('#dialog').dialog('open');
					return false;
				});	
				
				$('#dialog_item').click(function(){
					$('#contact_item').dialog('open');
					return false;
				});	
				
				$('#dialog_item_out').click(function(){
					$('#contact_item_out').dialog('open');
					return false;
				});					
				
				$('#dialog_report').click(function(){
					$('#report_item').dialog('open');
					return false;
				});					
				
				$('#dialog_shop').click(function(){
					$('#contact_shop').dialog('open');
					return false;
				});					
				
				$('#dialog_shop_out').click(function(){
					$('#contact_shop_out').dialog('open');
					return false;
				});					
							
			});				
			
	$(function() {
		$("#datepicker").datepicker({maxDate: -1,changeMonth: true,changeYear: true});
		$('#datepicker').datepicker('option', 'yearRange', '-100:+0');
	});			
								
