/************************************************
  
    Site Name: 
	Description: common script
	Version: 
	Author: 
	Last Modified :

************************************************/
/* 背景画像の指定＆オーバーレイストライプの指定 */

$( function() {
$('img.bgimage').maxImage({
            isBackground: true,
            slideShow: true,
            position: ('absolute'),
            verticalAlign: 'bottom',
            horizontalAlign:'right',
            slideDelay: 8, 
            slideShowTitle: false,
            maxFollows: 'height'
});

/* SLIDESHOWモード
$.vegas('slideshow', {
  backgrounds:[
    { src:'http://tcw11.com/RM-test/web2/Assets/js-vegas/images/background-ver3.jpg', fade:1000 },
	{ src:'http://tcw11.com/RM-test/web2/Assets/js-vegas/images/background-ver5.jpg',fade:1000},
    { src:'http://tcw11.com/RM-test/web2/Assets/js-vegas/images/background-ver4.jpg', fade:1000 }
  ]
})('overlay');
*/
$('ul.hover_block li').hover(function(){
	$(this).find('img').animate({top:'95px'},{queue:false,duration:500});
	}, function(){
	$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
	});

});
