﻿			$(function(){

				// Accordion
				$("#accordion").accordion({ header: "h3" });
	
				// Tabs
				$('#tabs').tabs();
	

				// Dialog			
				$('#dialog').dialog({
					autoOpen: false,
					width: 600,
					buttons: {
						"Ok": function() { 
							$(this).dialog("close"); 
						}, 
						"Cancel": function() { 
							$(this).dialog("close"); 
						} 
					}
				});
				
				// Dialog Link
				$('#dialog_link').click(function(){
					$('#dialog').dialog('open');
					return false;
				});

				// Datepicker
				$('#datepicker').datepicker({
					inline: true
				});
				
				// Slider
				$('#slider').slider({
					range: true,
					values: [17, 67]
				});
				
				// Progressbar
				$("#progressbar").progressbar({
					value: 20 
				});
				
				//hover states on the static widgets
				$('#dialog_link, ul#icons li').hover(
					function() { $(this).addClass('ui-state-hover'); }, 
					function() { $(this).removeClass('ui-state-hover'); }
				);
				
			});

			function moreInfo(chk_id, disp, txt_id) {
				if ($("#" + chk_id).is(":visible")) {
					$("#" + chk_id).hide();
					$("#" + txt_id).text("...more");
				}
				else {
					$("#" + chk_id).show();
					$("#" + txt_id).text("...less");
				}

            };
/*
$(document).ready(function() {
	$('#imglist').slidescale({
		images: [
        { photo_path: "img/photos/blue-fish.jpg",
          thumb_path: "img/photo_thumbs/blue-fish.jpg",
          text: "<a href='###'>キャプチャー</a>"},
        { photo_path: "img/photos/squid.jpg",
          thumb_path: "img/photo_thumbs/squid.jpg",
          text: "キャプチャー"},
        { photo_path: "img/photos/tide50.png",
          thumb_path: "img/photo_thumbs/tide50.png",
          text: "キャプチャー"}
        <!-- 以下枚数分 -->
		]
    });
});
*/
$(function () {
	$('#Button1').click(function() {
		location.reload();
	});
});


