// JavaScript Document
////

//写真のランダム表示
function rnd_img(){
	photoNum = 5;
    rnd = Math.floor(Math.random()*photoNum) + 1;
	$("#home_img img").attr("src","images/home_0"+ rnd +".jpg");
};

//
$(function(){
    $('#content').css('display','none');
    rnd_img();
    $('#content').fadeIn('slow');
});



//-->
