// JavaScript Document
$(document).ready(function(){
	c=1;
	$("a.next").click(function(){
		if(c<cc){
			$("#reel").animate({right: "+=100%"}, 800)
			c++
		} else {
			$("#reel").animate({right: "0%"}, 800)
			c=1;
		}
		return false;
	});
	$("a.prev").click(function(){
		if(c>1){
			$("#reel").animate({right: "-=100%"}, 800)
			c--;
		} else {
			$("#reel").animate({right: ((cc-1)*100)+"%"}, 800)
			c=cc;
		}
		return false;
	});
});
function popup(file) {
	newWindow = window.open(file,"",
	"width=438, height=595, resizabble=false");
	newWindow.focus();
}
