        var maxItems = 1;

        function init() {

            // Gallery
            var galleryOptions = {
                enableMouse:false,
				childSizeFixed:true
            };
            
            // Move images to children
            $(".celebritystyle-holder > ul > li").each(function() {
                $(this).attr("style", $(this).parent().attr("style")); 
                $(this).parent().attr("style", ""); // remove parent image
            });
       
            $(".celebritystyle-holder").jac(galleryOptions);   
        }               

        $(init);



