/**
 * @author kchanto
 */
$(document).ready(function(){
	var position
	$('.slider,.sliderb').hover(function(){
		position = $(this).position();
		$(".cover", this).stop().animate({left:195},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:0},{queue:false,duration:300});
	});
})