$(window).load(function() {
	$('#content').pngFix(); 
	hairmail.logoScroller.init();
});

hairmail.logoScroller = {
	_stripeWidth : null,
	_visibleWidth : 973,
	_delay : 30,
	_increment : 1,
	_posX : 1,
	
	init : function() {
		var that = this;
		this._stripeWidth = $('#logo_stripe').width();
		setInterval(function() {
			that.move()
		}, this._delay);
	},
	
	move : function() {
		this._posX += 1;
		$('#logo_stripe').css({'left' : -this._posX + 'px'});
		$('#logo_stripe').css({'clip' : 'rect(0px,' + (this._posX + this._visibleWidth) +'px,40px,'+ this._posX +'px)'});
		if(this._posX > this._stripeWidth / 2) { this._posX=0; }
	}
}
