// JavaScript Document
$(function(){
	// Vertical
	$("#vertical div a").hover(function(){
		$("img", this).stop().animate({top:"-42px"},{queue:false,duration:300});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:300});
	});
	// Horizontal
	$("#horizontal div a").hover(function(){
		$("img", this).stop().animate({left:"-120px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({left:"0px"},{queue:false,duration:200});
	});
});
