jQuery(document).ready(function(){

	// Horizontal
	jQuery(".horizontal div a").hover(function(){
		jQuery("img", this).stop().animate({top:"-26px"},{queue:false,duration:200});
	}, function() {
		jQuery("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
	});
});

