/**
 * @author Toraya
 */
$(document).ready(function(){
	$('div#special_select a').removeAttr('href');
	$('div#special_select li').click(function(){
		var num = $(this).attr('class').match(/\d+/);
		num = (num-1)*(-940);
		$(".slide").animate({"left": + num + "px"},"slow","easeInOutCirc");
	});
});