var AMC = {};

window.addEvent("domready",function(){
	if ($E("#home")) AMC.polaroids.init();
});

AMC.polaroids = {
	length 		: 4,
	current 	: null,
	imgLocation	: '/wp-content/themes/aabadi/images/polaroid',
	init : function() {
		polaroids = $E('img#polaroidContainer');
		polaroids.addEvent("click",this.showNext.bindAsEventListener(this));
		polaroids.addClass("cursor");
		this.showRandom();
	},
	showRandom : function() {
		this.current = Math.floor(Math.random() * this.length + 1);
		polaroids.src = this.imgLocation + this.current + ".jpg";
	},
	showNext : function() {
		this.current = (this.current == 4) ? 1 : this.current + 1; 
		polaroids.src = this.imgLocation + this.current + ".jpg";
	}
}

