$(function(){
	// Vertical
	$(".linkler-v div a").hover(function(){
		$("img", this).stop().animate({top:"-65px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
	});
	// Horizontal
	$(".linkler-h div a").hover(function(){
		$("img", this).stop().animate({left:"-244px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({left:"0px"},{queue:false,duration:200});
	});
});
