(function($) {
	var cache = [];
	$.preLoadImages = function() {
		var args_len = arguments.length;
		for(var i = args_len; i--;) {
			var cacheImage = document.createElement('img');
			cacheImage.src = arguments[i];
			cache.push(cacheImage);
		}
	}
})(jQuery)

for(var i = 1; i < 7; i++) {
	jQuery.preLoadImages('/-new/' + i + '.jpg','/-new/' + i + '.jpg');
}

var current = 1;
var Img = {
	go: function() {
		$("#pane").animate({"backgroundPosition":"100% 100%"}, 4000, Img.on);
	},
	on: function() {
		if(current < 6) {
			current++;
		} else {
			current = 1;
		}
		$("#pane").css({ "backgroundImage":'url(/-new/' + current + '.jpg)', "backgroundPosition":"0% 0%" });
		Img.go();
	}
}
$(document).ready(function() {
	Img.go();
	$("p").bind('click', function() { window.location = "http://devasbling.com/devastore/"; });
});

