$(function()
{
	$('#date').datepicker(
	{
		dateFormat	: 'yy/mm/dd'
	});
	
	$('.fancyImg').fancybox();
	
	
	var $height = $('#content').height();
	if ($height < 650) $('#content').css({height:'650px'});
});

