$(document).ready(function(){
	$('#gNavi2 li a:not(.ac) img').hover(
		function() {
			$(this).animate({"top":"+=51px"}, 300);
		},
		function() {
			$(this).animate({"top":"-=51px"}, 300);
		}
	);



//	$('#gNavi2 li a:not(.ac)').hover(
//		function() {
//			$('img',this).children().animate({"top":"+=51px"}, 300);
//		},
//		function() {
//			$('img',this).children().animate({"top":"-=51px"}, 300);
//		}
//	);
	
	
//	$('#gNavi2 li').click(function () {
//		var url = $(this).find("a").attr("href");
//		location.href=url;
//		return false;
//	});
});

