
jQuery(document).ready(function(){
    var settings = {
		tagCloudGradient: { topColor: '0B4433', bottomColor: '108143' }
    };
    
    if(typeof(customSettings) != 'undefined'){
	    jQuery.extend(settings, customSettings);
    }

    jQuery(".ez-tagcloudMod-tagcloud .tagcloud-wrapper")
    .gradient({ from: settings.tagCloudGradient.topColor, 
                to: settings.tagCloudGradient.bottomColor, 
                direction: "horizontal"});
    
});

