﻿/* Queue the Site Load Events
===================================================================================== */
var $j = jQuery.noConflict();
$j(function() {
    anim();
});
  

function anim() {
	// hide class to fix bug of image flashing
    $j(".carBox .saleBanner")
    .addClass("hide")
    .fadeTo(3000, 0, function() { $(this).removeClass("hide") })
    .fadeTo(1000, 1)
    .fadeTo(3000, 1)
    .fadeTo(1000, 0, anim);
}
