$(document).ready(function(){
	//position
    $("#container").css("position","relative");
    $(".ad").css({'float' : 'left','position' : 'relative'});
    $(".logo").css("position","relative");
    $("#top").css("overflow","hidden");
    //z-index
    $(".logo").css("z-index","100");
    $("#container").css("z-index","50");
    $(".ad").css("z-index","70");
    //container
    $(".ad").css('left', "-562px");
    //move container
    var movingDistance=562;
    var leftValue=$(".ad").css("left");
    var movement = parseFloat(leftValue, 10) + movingDistance;
	$(".ad")
		.stop()
		.animate({
			"left": movement
		}, function() {
			$("#top").data("currentlyMoving", false);
		});
});
