// JavaScript Document
$(function(){
	var nav_count = 0;
	$("#gnavi img").each(function(){
		$(this).css({ "position":"absolute", "left":nav_count*102+"px", "top":"0px" });
		nav_count++;
	});
	$("#gnavi img").animate({ "top":"-15px" }, 600);
	$("#gnavi img").hover(
		function(){
			$(this).animate({ "top":"0px" }, 200);
		},
		function(){
			$(this).animate({ "top":"-15px" }, 200);
		}
	);
});
