$(function(){var lis=$('li.easySliderLi').size();var current_top=0;var max_top=0;var cur_contents=1;var min_contents=1;var max_contents=8;$('#next').add('#next-icon').click(function(){current_top=$('.easySliderUl').css('top');current_top=parseInt(current_top);max_top=(lis-1)*420;if(current_top<=-max_top){return false;}else{$('.easySliderUl').animate({'top':'-=420px'},500);cur_contents++;if(cur_contents>max_contents){cur_contents=max_contents;}
var new_contents=$('#contents-'+cur_contents).html();$('#project-desc').html(new_contents).hide().fadeIn(500);}
return false;});$('#prev').add('#prev-icon').click(function(){$('.easySliderUl').stop();current_top=$('.easySliderUl').css('top');current_top=parseInt(current_top);if(current_top>=0||!current_top){return false;}else{$('.easySliderUl').animate({'top':'+=420px'},500);cur_contents--;if(cur_contents<min_contents){cur_contents=min_contents;}
var new_contents=$('#contents-'+cur_contents).html();$('#project-desc').html(new_contents).hide().fadeIn(500);}
return false;});});
