var screenshot_current_page=0;var screenshot_total_page=0;$(document).ready(function(){var a=function(){$("#screenshot").html('<img src="http://'+screenshot[screenshot_current_page-1]+'"/>');$("#screenshot_current").text(screenshot_current_page)};screenshot_total_page=screenshot.length;if(screenshot_total_page>0){screenshot_current_page++;$("#screenshot_total").text(screenshot_total_page);a()}else{$("#screenshot_box").hide()}$("a.screenshot-next").click(function(){if(screenshot_current_page>=screenshot_total_page){screenshot_current_page=1}else{screenshot_current_page++}a();return false});$("a.screenshot-prev").click(function(){if(screenshot_current_page==1){screenshot_current_page=screenshot_total_page}else{screenshot_current_page--}a();return false})});