// JavaScript Document
$(function(){
	// Vertical
	$("#menu div a").hover(function(){
		$("img", this).stop().animate({top:"-40px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
	});
	
	// Vertical
	$("#menu_social div a").hover(function(){
		$("img", this).stop().animate({top:"-30px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
	});
	
	// Vertical
	$("#menu_credits div a").hover(function(){
		$("img", this).stop().animate({top:"-25px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
	});
});
