$(document).ready(function(){
	$('div#char_select a').removeAttr('href');
	$('div#char_select li').click(function(){
		var num = $(this).attr('class').match(/\d+/);
		if (num == 1) {
			$(".slide").animate({"top":"0px","left":"0px"},"slow","easeOutBounce");
		} else if (num==2){
			$(".slide").animate({"top":"0px","left":"-780px"},"slow","easeOutBounce");
		} else if (num==3){
			$(".slide").animate({"top":"-530px","left":"0px"},"slow","easeOutBounce");
		} else if (num==4){
			$(".slide").animate({"top":"-530px","left":"-780px"},"slow","easeOutBounce");
		}
	});
});