jQuery(document).ready(function(){
    $("#sections").find(".sitem.passive").hover(
        function(){
            $(this).find('span.ileft').show()
       },
       function(){
           $(this).find('span.ileft').hide();
       }
    );
    $("#sections").find(".sitem.active").hover(
        function(){
            $(this).addClass('passive');
            $(this).removeClass('active');
            $(this).find('span.ileft').show();
       },
       function(){
           $(this).removeClass('passive');
           $(this).addClass('active');
       }
    );
})
jQuery.preloadImages = function() {
    jQuery.each (arguments,function (e) {
        jQuery("<img>").attr("src", this);
    });
}


