//角丸
$(function(){  
$('.title').corner();
$('.box3').corner("bevel top");
});
//整列？
$(function(){  
	
        $('.box15').masonry();
    })  
//影
$(document).ready(function(){
$(".box").shadowOn({
imagepath: "img/shadowon/", //画像フォルダをアップしたところ
imageset: '17' //画像番号
});
});
$(document).ready(function(){
$(".box2").shadowOn({
imagepath: "img/shadowon/", //画像フォルダをアップしたところ
imageset: '65' //画像番号
});
});
//menuマウスオーバー
$(function(){
$(".box3").hover(
function(){
//this.style.backgroundColor = "#f08218";
//this.style.backgroundColor = "#999999";
this.style.backgroundColor = "#79bd2b";
},
function(){
//this.style.backgroundColor = "#ea5518";
//this.style.backgroundColor = "#404040";
this.style.backgroundColor = "#598a20";
}
);
});// JavaScript Document
