// JavaScript Document
strip={};

strip.bg=
{
	anim: function() 
	{
		$(".stripAnim" ).animate({backgroundPosition: "25px 0px"}, 500, "linear")
			.animate({backgroundPosition: "0px 0px"}, 0, "linear", function(){strip.bg.anim()});
	}
}

strip.pos=
{
	up: function(o) 
	{	
		strip.bg.anim();
		$("#stripAnim"+o).animate({top: "120px"},{queue: false, duration: 300});
	},

	down: function(o) 
	{
		$("#stripAnim"+o).animate({top: "150px"},{queue: false, duration: 300});
	}
}
