$(function() 
{
	//tabs
	$("#a-exhibition").tabs( { fx: { opacity: "toggle" } } ).tabs("rotate", 5000); 
	$(".block-pickup").tabs( { fx: { opacity: "toggle" } } ).tabs("rotate", 8000);
	
	//weather
	$.ajax({
		url : "/php/lwh_proxy.php",
		dataType : "jsonp",
		success : loadCompleteWeather
	});
	
	function loadCompleteWeather(json)
	{                    
		$('<image src="' + json.image + '" width="' + json.width + '" height="' + json.height + '"></image>')
		.appendTo(".ic-weather");
	}
});

$(window).load(function()
{
	//grid
	$("#area-thumbnail").vgrid();

	$(".grid-now").vgrid();

	$(".grid-future").vgrid();
});