/*##########################################################################################
############################################################################################
####    FEATURED PRODUCTS                                                               ####
####    Applies a drop shadow to the Product title                                      ####
####    Requires:   jquery.min.js                                                       ####
####                jquery.dropshadow.js                                                ##*/
jQuery("window").ready(
    function(){
        jQuery("div#featured-product-title-text").dropShadow(
                {left: 0, top: 0, blur: 2}
            );
    }
);