$(document).ready(function(){
/*ホーム*/
$('#nav li#menu1 img')
.hover(
function(){
 $(this).stop().animate({
'width':'65px',
'height':'40px'
 },'fast');
},
function () {
 $(this).stop().animate({
 'width':'53px',
 'height':'35px',
  'marginTop':'5px'
 },'fast');
 }
);
/*会社概要*/		
$('#nav li#menu2 img')
.hover(
function(){
 $(this).stop().animate({
'width':'164px',
'height':'40px'
 },'fast');
},
function () {
 $(this).stop().animate({
 'width':'144px',
 'height':'35px',
  'marginTop':'5px'
 },'fast');
 }
);
/*無添加住宅について*/
$('#nav li#menu3 img')
.hover(
function(){
 $(this).stop().animate({
'width':'160px',
'height':'40px'
 },'fast');
},
function () {
 $(this).stop().animate({
 'width':'140px',
 'height':'35px',
  'marginTop':'5px'
 },'fast');
 }
);
/*ライブハウスの注文住宅*/	
$('#nav li#menu4 img')
.hover(
function(){
 $(this).stop().animate({
'width':'120px',
'height':'40px'
 },'fast');
},
function () {
 $(this).stop().animate({
 'width':'105px',
 'height':'35px',
  'marginTop':'5px'
 },'fast');
 }
);
/*新規施工例*/	
$('#nav li#menu5 img')
.hover(
function(){
 $(this).stop().animate({
'width':'170px',
'height':'40px'
 },'fast');
},
function () {
 $(this).stop().animate({
 'width':'149px',
 'height':'35px',
  'marginTop':'5px'
 },'fast');
 }
);
/*ライブハウスの歩み*/		
$('#nav li#menu6 img')
.hover(
function(){
 $(this).stop().animate({
'width':'95px',
'height':'40px'
 },'fast');
},
function () {
 $(this).stop().animate({
 'width':'83px',
 'height':'35px',
  'marginTop':'5px'
 },'fast');
 }
);
/*ライブハウスブログ*/
$('#nav li#menu7 img')
.hover(
function(){
 $(this).stop().animate({
'width':'59px',
'height':'40px'
 },'fast');
},
function () {
 $(this).stop().animate({
 'width':'52px',
 'height':'35px',
  'marginTop':'5px'
 },'fast');
 }
);
/*お問合わせ・資料請求*/		
$('#nav li#menu8 img')
.hover(
function(){
 $(this).stop().animate({
'width':'105px',
'height':'40px'
 },'fast');
},
function () {
 $(this).stop().animate({
 'width':'92px',
 'height':'35px',
  'marginTop':'5px'
 },'fast');
 }
);


});

