// Suckerfish Dropdown menu script (to hack IE)

$().ready(function(){
	
	
	$("#birthday").datepicker({ 
		showButtonPanel: true,
	    dateFormat: 'yy-mm-dd',
	    autoSize: true,
	    closeText: 'x',
	    changeYear: true,
	    changeMonth: true,
		yearRange : 'c-80:c'
	});
	
	$("#start_date").datepicker({ 
		showButtonPanel: true,
	    dateFormat: 'yy-mm-dd',
	    autoSize: true,
	    closeText: 'x',
	    changeYear: true,
	    changeMonth: true,
		yearRange : 'c-20:c'
	});
	/*
	$("#message_success").dialog({
        autoOpen: false,
        resizable: false,
        modal: true,
        buttons: {
            
            "確認": function(){
                location.href = "/";
            }
        }
	});
	
	if($("#message_success").text()){
		$("#message_success").dialog('open');
	}
	*/
});



/*
function confirmation()
{
	if($("#news_id").val() > 0){
		return confirm("你確定要修改此消息?");
	}
	else{
		return confirm("你確定要新增此消息?");
	}
}
*/
