function startArrow() {
	
	var arrow = $("#main .sliding-arrow"),
		img = arrow.find("img"),
		backfill = $('<div class="backfill" style="background-color:#00beff;position:absolute;left:0;top:0;width:0;height:'+img.height()+'px"></div>');
		
		
	arrow.children() 
		.remove("*");

	arrow
		.append(backfill)
		.append(img);
	
	function arrowin() {
		var l0 = arrow.offset().left - img.width() - 5;
		backfill.css({
			display: "block",
			width: 0
		});
		arrow.css({
			left: l0-10,
			display: "block"
		}).animate({
			width: $("#main .center").offset().left - l0
		}, {
			step: function(now, fx){
				var w = now - img.width();
				
				if (w < 0) 
					w = 0;
				
				backfill.css({
					display: "block",
					width: w
				});
			
			}
		});
	};
	
	$(window).resize(
		function() {
			arrow.stop();
			arrowin();
		}
	);
	arrowin();
};

