/* nav05
======================================== */
$(function() {
	$('.nav5 a')
	//ボタンを-200する
	.each(function(){
		$(this).css("margin-left", "0px")
	})
	//アニメーション処理
	.hover(
		function(){
			$(this).stop().animate({
				'marginLeft':'100px'
			},'fast');
		},
		function () {
			$(this).stop().animate({
				'marginLeft':'0px'
			},'slow');
		}
	);
});

/* nav-qr
======================================== */
$(function() {
	$('.nav-qr a')
	//ボタンを-200する
	.each(function(){
		$(this).css("margin-right", "0px")
	})
	//アニメーション処理
	.hover(
		function(){
			$(this).stop().animate({
				'marginRight':'123px'
			},'fast');
		},
		function () {
			$(this).stop().animate({
				'marginRight':'0px'
			},'slow');
		}
	);
});

/* //マスオーバー時に上にスライド
======================================== */

	$(document).ready(function(){
		//マスオーバー時に上にスライド
		$('.boxgrid.slidedown').hover(function(){
			$(".cover", this).stop().animate({top:'123px'},{queue:false,duration:300});
		}, function() {
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
		});
	
	});
