jQuery.preloadCssImages = function() {

	 var images = ["../images/nav_corpo_1.png","../images/nav_corpo_2.png","../images/nav_corpo_3.png","../images/nav_corpo_4.png","../images/nav_corpo_1_on.png","../images/nav_corpo_2_on.png","../images/nav_corpo_3_on.png","../images/nav_corpo_4_on.png"];
	 var imgs = jQuery.makeArray(images);
	 var url    = '/';

    if (imgs.length) {
        createImgObjects(imgs);
    }

    return;

    function createImgObjects( array ) {
        jQuery(array).each(function(){
            var img = new Image();
            $(img).attr('src', (this=='/' || !!this.match('http://')) ? this : url+this );
        });
    }

};
jQuery.preloadCssImagesHome = function() {

	 var images = ["../images/hstep1.png","../images/hstep1_on.png","../images/hstep2.png","../images/hstep2_on.png","../images/hstep3.png","../images/hstep3_on.png","../images/hstep4.png","../images/hstep4_on.png","../images/hstep5.png","../images/hstep5_on.png","../images/home_slide1_illus.png","../images/home_slide2_illus.png","../images/home_slide3_illus.png","../images/home_slide4_illus.png","../images/home_slide5_illus.png"];
	 var imgs = jQuery.makeArray(images);
	 var url    = '/';

    if (imgs.length) {
        createImgObjects(imgs);
    }

    return;

    function createImgObjects( array ) {
        jQuery(array).each(function(){
            var img = new Image();
            $(img).attr('src', (this=='/' || !!this.match('http://')) ? this : url+this );
        });
    }

};

