﻿
// Changes Home Page background color to transparent
jQuery(document).ready(function () {
    jQuery("div#mainContentWrapper").css({ backgroundColor: 'transparent' });
});

// Rotating Ads on the Home Page
jQuery(document).ready(function () {
    jQuery('.slideshow_home').cycle({
        fx: 'fade',
        speed: 4000,
        delay: -2000
    });
});
