Added: 
james/project/trunk/project/src/site/resources/js/galleria/plugins/galleria.flickr.js
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/plugins/galleria.flickr.js?rev=1034970&view=auto
==============================================================================
--- 
james/project/trunk/project/src/site/resources/js/galleria/plugins/galleria.flickr.js
 (added)
+++ 
james/project/trunk/project/src/site/resources/js/galleria/plugins/galleria.flickr.js
 Sun Nov 14 09:54:04 2010
@@ -0,0 +1,221 @@
+/*!
+ * Galleria Flickr Plugin v 1.2
+ * http://galleria.aino.se
+ *
+ * Copyright 2010, Aino
+ * Licensed under the MIT license.
+ */
+
+(function($) {
+
+// If no Galleria, fail silently
+var G = window.Galleria;
+if (typeof G == 'undefined') {
+    return;
+}
+
+var F = G.Flickr = function(api_key) {
+
+    if (!api_key) {
+        G.raise('No API key found');
+        return;
+    }
+
+    this.callback = function() {};
+
+    // The required API key
+    this.api_key = api_key;
+
+    this.options = {
+        max: 40, // photos to return
+        size: 'big', // photo size ( small,medium,big,original )
+        sort: 'interestingness-desc', // sort option ( date-posted-asc, 
date-posted-desc, date-taken-asc, date-taken-desc, interestingness-desc, 
interestingness-asc, relevance )
+        description: false // set this to true to get description as caption
+    };
+};
+
+F.prototype = {
+
+    // find any photos by search string
+    search: function( str ) {
+        this._set(arguments);
+        return this._find({
+            text: str
+        });
+    },
+
+    // find any photos by tagname
+    getTags: function( str ) {
+        this._set(arguments);
+        return this._find({
+            tags: str
+        });
+    },
+
+    // get photos from a user
+    getUser: function(username) {
+        var args = arguments;
+        return this._call({
+            method: 'flickr.urls.lookupUser',
+            url: 'flickr.com/photos/' + username
+        }, function(data) {
+            this._set(args);
+            this._find({
+                user_id: data.user.id,
+                method: 'flickr.people.getPublicPhotos'
+            });
+        });
+    },
+
+    // get photos from a photoset
+    getSet: function(photoset_id) {
+        this._set(arguments);
+        return this._find({
+            photoset_id: photoset_id,
+            method: 'flickr.photosets.getPhotos'
+        });
+    },
+
+    // get photos from a gallery
+    getGallery: function(gallery_id) {
+        this._set(arguments);
+        return this._find({
+            gallery_id: gallery_id,
+            method: 'flickr.galleries.getPhotos'
+        });
+    },
+
+    // search for groups by search string, returns an array with group objects
+    // use getGroup to get the photos from a group ID
+    // added in 1.2
+    searchGroup: function(str, callback) {
+        callback = callback || function() {};
+        this._call({
+            text: str,
+            method: 'flickr.groups.search'
+        }, function(data) {
+            callback.call( window, data.groups.group);
+        });
+        return this;
+    },
+
+    // get photos from a group ID
+    // added in 1.2
+    getGroup: function ( group_id ) {
+        this._set( arguments );
+        return this._find({
+            group_id: group_id,
+            method: 'flickr.groups.pools.getPhotos'
+        });
+    },
+
+    // set options
+    setOptions: function( options ) {
+        $.extend(this.options, options);
+        return this;
+    },
+
+    // shortens the arguments and applies options
+    // private
+    _set: function( args ) {
+
+        args = Array.prototype.slice.call(args);
+
+        this.callback = args[2] || args[1];
+
+        if (typeof args[1] == 'object') {
+            this.setOptions(args[1]);
+        }
+
+        return this;
+    },
+
+    // call Flickr and raise errors
+    _call: function( params, callback ) {
+
+        var url = 'http://api.flickr.com/services/rest/?';
+
+        var scope = this;
+
+        params = $.extend({
+            format : 'json',
+            jsoncallback : '?',
+            api_key: this.api_key
+        }, params );
+
+        $.each(params, function( key, value ) {
+            url += '&' + key + '=' + value;
+        });
+
+        $.getJSON(url, function(data) {
+            if ( data.stat == 'ok' ) {
+                callback.call(scope, data);
+            } else {
+                Galleria.raise( data.code.toString() + ' ' + data.stat + ': ' 
+ data.message );
+            }
+        });
+        return scope;
+    },
+
+    // ask flickr for photos, parse the result and call the callback with the 
galleria-ready data array
+    _find: function(params) {
+
+        params = $.extend({
+            method: 'flickr.photos.search',
+            extras: 'url_t, url_m, url_o, url_s, url_l, description',
+            sort: this.options.sort
+        }, params );
+
+        return this._call(params, function(data) {
+
+            var gallery = [],
+            photos = data.photos ? data.photos.photo : data.photoset.photo,
+            len = Math.min(this.options.max, photos.length);
+
+            for ( var i=0; i<len; i++ ) {
+                var photo = photos[i],
+                img = photo.url_m;
+
+                switch(this.options.size) {
+                    case 'small':
+                    img = photo.url_s;
+                    break;
+
+                    case ( 'big' || 'large' ):
+                    if ( photo.url_l ) {
+                        img = photo.url_l;
+                    } else if ( parseInt( photo.width_o ) > 1280 ) {
+                        img = 
'http://farm'+photo['farm']+'.static.flickr.com/'+photo['server']+
+                        '/'+photo['id']+'_' + photo['secret'] + '_b.jpg';
+
+                    } else if( photo.url_o ) {
+                        img = photo.url_o;
+                    }
+                    break;
+
+                    case 'original':
+                    if( photo.url_o ) {
+                        img = photo.url_o;
+                    }
+                    break;
+                }
+                var item = {
+                    thumb: photos[i].url_t,
+                    image: img,
+                    title: photos[i].title,
+                    description: this.options.description && 
photos[i].description ? photos[i].description._content : ''
+                };
+                gallery.push( item );
+            }
+            this.callback.call( this, gallery );
+        });
+    }
+};
+
+// Static
+// TODO: fetch any flickr feed ( YQL integration )
+F.getFeed = function(type, params) {
+
+};
+
+})( jQuery );
\ No newline at end of file

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/README.rst
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/classic/README.rst?rev=1034970&view=auto
==============================================================================
--- 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/README.rst
 (added)
+++ 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/README.rst
 Sun Nov 14 09:54:04 2010
@@ -0,0 +1,10 @@
+======================
+Galleria Classic Theme
+======================
+
+This is the Galleria Classic Theme that fetches image data from a list of IMG 
elements and generates thumbnails. If the thumbnail’s total width exceeds the 
containing width, Galleria automatically adds a carousel (unless disabled). 
Galleria automatically adjusts it’s width to the containing element’s size.
+
+Check out classic-demo.html for example usage.
+
+Copyright (c) 2010, Aino
+Licensed under the MIT license.
\ No newline at end of file

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-demo.html
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-demo.html?rev=1034970&view=auto
==============================================================================
--- 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-demo.html
 (added)
+++ 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-demo.html
 Sun Nov 14 09:54:04 2010
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <meta charset="utf-8">
+        <title>Galleria Classic Theme</title>
+        <script 
src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";></script>
+        <script src="../../../src/galleria.js"></script>
+        <style>
+            html,body{background:#333}
+            .content{color:#eee;font:14px/1.4 "helvetica neue", 
arial,sans-serif;width:620px;margin:20px auto}
+            h1{line-height:1.1;letter-spacing:-1px;}
+            a {color:#fff;}
+            #galleria{height:400px;}
+        </style>
+    </head>
+<body>
+    <div class="content">
+        <h1>Galleria Classic Theme</h1>
+        
+        <div id="galleria">
+            <img alt="Squirrel! That is all." 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Eichh%C3%B6rnchen_D%C3%BCsseldorf_Hofgarten_edit.jpg/800px-Eichh%C3%B6rnchen_D%C3%BCsseldorf_Hofgarten_edit.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Sea-otter-morro-bay_13.jpg/800px-Sea-otter-morro-bay_13.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Kuznetsk_Alatau_3.jpg/500px-Kuznetsk_Alatau_3.jpg";>
+            <img alt="Strawberries, yum yum! Shiny red" 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Basket_of_strawberries_red_accent.jpg/500px-Basket_of_strawberries_red_accent.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/2/2d/Ns1-unsharp.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Laser_effects.jpg/500px-Laser_effects.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/PizBernina3.jpg/500px-PizBernina3.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/47/La_Galera_2.jpg/500px-La_Galera_2.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Costa_rica_santa_elena_skywalk.jpg/500px-Costa_rica_santa_elena_skywalk.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Smoky_forest.jpg/500px-Smoky_forest.jpg";>
+            <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Alcea_rosea_and_blue_sky.jpg/500px-Alcea_rosea_and_blue_sky.jpg";>
+        </div>
+    </div>
+    <script>
+    // Load the classic theme
+    Galleria.loadTheme('galleria.classic.js');
+    // Initialize Galleria
+    $('#galleria').galleria();
+    </script>
+    </body>
+</html>
\ No newline at end of file

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-loader.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-loader.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-loader.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-map.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-map.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/classic-map.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/galleria.classic.css
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/classic/galleria.classic.css?rev=1034970&view=auto
==============================================================================
--- 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/galleria.classic.css
 (added)
+++ 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/galleria.classic.css
 Sun Nov 14 09:54:04 2010
@@ -0,0 +1,202 @@
+/*
+ * Galleria Classic Theme
+ * Copyright (c) 2010, Aino
+ * Licensed under the MIT license.
+ */
+ 
+.galleria-container {
+    position: relative;
+    overflow: hidden;
+    background: #000;
+}
+.galleria-container img {
+    -moz-user-select: none;
+    -webkit-user-select: none;
+    -o-user-select: none;
+}
+.galleria-stage {
+    position: absolute;
+    top: 10px;
+    bottom: 60px;
+    left: 10px;
+    right: 10px;
+    overflow:hidden;
+}
+.galleria-thumbnails-container {
+    height: 50px;
+    bottom: 0;
+    position: absolute;
+    left: 10px;
+    right: 10px;
+    z-index: 2;
+}
+.galleria-carousel .galleria-thumbnails-list {
+    margin-left: 30px;
+    margin-right: 30px;
+}
+.galleria-thumbnails .galleria-image {
+    height: 40px;
+    width: 60px;
+    background: #000;
+    margin: 0 5px 0 0;
+    border: 1px solid #000;;
+    float: left;
+    cursor: pointer;
+}
+.galleria-counter {
+    position: absolute;
+    bottom: 10px;
+    left: 10px;
+    text-align: right;
+    color: #fff;
+    font: normal 11px/1 arial,sans-serif;
+    z-index: 2;
+}
+.galleria-loader {
+    background: #000;
+    width: 20px;
+    height: 20px;
+    position: absolute;
+    top: 10px;
+    right: 10px;
+    z-index: 2;
+    display: none;
+    background: url(classic-loader.gif) no-repeat 2px 2px;
+}
+.galleria-info {
+    width: 50%;
+    top: 15px;
+    left: 15px;
+    z-index: 2;
+    position: absolute;
+}
+.galleria-info-text {
+    background-color: #000;
+    padding: 12px;
+    display: none;
+    /* IE7 */ zoom:1;
+}
+.galleria-info-title {
+    font: bold 12px/1.1 arial,sans-serif;
+    margin: 0;
+    color: #fff;
+}
+.galleria-info-description {
+    font: italic 12px/1.4 georgia,serif;
+    margin: 0;
+    color: #bbb;
+}
+.galleria-info-title+.galleria-info-description {
+    margin-top: 7px;
+}
+.galleria-info-close {
+    width: 9px;
+    height: 9px;
+    position: absolute;
+    top: 5px;
+    right: 5px;
+    background-position: -753px -11px;
+    opacity: .5;
+    filter: alpha(opacity=50);
+    cursor: pointer;
+    display: none;
+}
+.galleria-info-close:hover{
+    opacity:1;
+    filter: alpha(opacity=100);
+}
+.galleria-info-link {
+    background-position: -669px -5px;
+    opacity: .7;
+    filter: alpha(opacity=70);
+    position: absolute;
+    width: 20px;
+    height: 20px;
+    cursor: pointer;
+    background-color: #000;
+}
+.galleria-info-link:hover {
+    opacity: 1;
+    filter: alpha(opacity=100);
+}
+.galleria-image-nav {
+    position: absolute;
+    top: 50%;
+    margin-top: -62px;
+    width: 100%;
+    height: 62px;
+    left: 0;
+}
+.galleria-image-nav-left,
+.galleria-image-nav-right {
+    opacity: .3;
+    filter: alpha(opacity=30);
+    cursor: pointer;
+    width: 62px;
+    height: 124px;
+    position: absolute;
+    left: 10px;
+    z-index: 2;
+    background-position: 0 46px;
+}
+.galleria-image-nav-right {
+    left: auto;
+    right: 10px;
+    background-position: -254px 46px;
+    z-index: 2;
+}
+.galleria-image-nav-left:hover,
+.galleria-image-nav-right:hover {
+    opacity: 1;
+    filter: alpha(opacity=100);
+}
+.galleria-thumb-nav-left,
+.galleria-thumb-nav-right {
+    cursor: pointer;
+    display: none;
+    background-position: -495px 5px;
+    position: absolute;
+    left: 0;
+    top: 0;
+    height: 40px;
+    width: 23px;
+    z-index: 3;
+    opacity: .8;
+    filter: alpha(opacity=80);
+}
+.galleria-thumb-nav-right {
+    background-position: -578px 5px;
+    border-right: none;
+    right: 0;
+    left: auto;
+}
+.galleria-thumbnails-container .disabled {
+    opacity: .2;
+    filter: alpha(opacity=20);
+    cursor: default;
+}
+.galleria-thumb-nav-left:hover,
+.galleria-thumb-nav-right:hover {
+    opacity: 1;
+    filter: alpha(opacity=100);
+    background-color: #111;
+}
+.galleria-thumbnails-container .disabled:hover {
+    opacity: 0.2;
+    filter: alpha(opacity=20);
+    background-color: transparent;
+}
+
+.galleria-carousel .galleria-thumb-nav-left,
+.galleria-carousel .galleria-thumb-nav-right {
+    display: block;
+}
+.galleria-thumb-nav-left,
+.galleria-thumb-nav-right,
+.galleria-info-link,
+.galleria-info-close,
+.galleria-image-nav-left,
+.galleria-image-nav-right {
+    background-image: url(classic-map.png);
+    background-repeat: no-repeat;
+}

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/galleria.classic.js
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/classic/galleria.classic.js?rev=1034970&view=auto
==============================================================================
--- 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/galleria.classic.js
 (added)
+++ 
james/project/trunk/project/src/site/resources/js/galleria/themes/classic/galleria.classic.js
 Sun Nov 14 09:54:04 2010
@@ -0,0 +1,82 @@
+/*
+ * Galleria Classic Theme v. 1.5 2010-10-28
+ * http://galleria.aino.se
+ *
+ * Copyright (c) 2010, Aino
+ * Licensed under the MIT license.
+ */
+
+(function($) {
+
+Galleria.addTheme({
+    name: 'classic',
+    author: 'Galleria',
+    version: '1.5',
+    css: 'galleria.classic.css',
+    defaults: {
+        transition: 'slide',
+        thumb_crop: 'height',
+        
+               // set this to false if you want to show the caption all the 
time:
+        _toggle_info: true
+    },
+    init: function(options) {
+        
+        // add some elements
+        this.addElement('info-link','info-close');
+        this.append({
+            'info' : ['info-link','info-close']
+        });
+        
+        // cache some stuff
+        var toggle   = this.$('image-nav-left,image-nav-right,counter'),
+            info     = this.$('info-link,info-close,info-text'),
+            click    = Galleria.TOUCH ? 'touchstart' : 'click';
+        
+        // show loader & counter with opacity
+        this.$('loader,counter').show().css('opacity',.4)
+
+        // some stuff for non-touch browsers
+        if (! Galleria.TOUCH ) {
+            
+            // fade thumbnails
+            this.$('thumbnails').children().hover(function() {
+                $(this).not('.active').children().stop().fadeTo(100, 1);
+            }, function() {
+                $(this).not('.active').children().stop().fadeTo(400, .6);
+            });
+            
+            this.addIdleState( this.get('image-nav-left'), { left:-50 });
+            this.addIdleState( this.get('image-nav-right'), { right:-50 });
+            this.addIdleState( this.get('counter'), { opacity:0 });
+        }
+        
+        // toggle info
+        if ( options._toggle_info ) {
+            info.bind( click, function() {
+                info.toggle();
+            });
+        }
+        
+        // bind some stuff
+        this.bind(Galleria.THUMBNAIL, function(e) {
+            
$(e.thumbTarget).parent(':not(.active)').children().css('opacity',.6)
+        });
+        
+        this.bind(Galleria.LOADSTART, function(e) {
+            if (!e.cached) {
+                this.$('loader').show().fadeTo(200, .4);
+            }
+            
+            this.$('info').toggle( this.hasInfo() );
+            
+            
$(e.thumbTarget).css('opacity',1).parent().siblings().children().css('opacity',.6);
+        });
+        
+        this.bind(Galleria.LOADFINISH, function(e) {
+            this.$('loader').fadeOut(200);
+        });
+    }
+});
+
+})(jQuery);

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/b.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/b.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/b.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/down.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/down.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/down.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/fix.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/fix.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/fix.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/fullscreen-demo.html
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/fullscreen-demo.html?rev=1034970&view=auto
==============================================================================
--- 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/fullscreen-demo.html
 (added)
+++ 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/fullscreen-demo.html
 Sun Nov 14 09:54:04 2010
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html lang="sv">
+    <head>
+        <title>Galleria Fullscreen Theme Demo 01</title>
+        <script 
src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";></script>
+        <script src="../../galleria.js"></script>
+        <script src="../../plugins/galleria.flickr.js"></script>
+        <style>
+        body{background:#000;}
+        </style>
+    </head>
+<body>
+    <div id="galleria">
+       <img alt="Squirrel! That is all." 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Eichh%C3%B6rnchen_D%C3%BCsseldorf_Hofgarten_edit.jpg/800px-Eichh%C3%B6rnchen_D%C3%BCsseldorf_Hofgarten_edit.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Sea-otter-morro-bay_13.jpg/800px-Sea-otter-morro-bay_13.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Kuznetsk_Alatau_3.jpg/500px-Kuznetsk_Alatau_3.jpg";>
+        <img alt="Strawberries, yum yum! Shiny red" 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Basket_of_strawberries_red_accent.jpg/500px-Basket_of_strawberries_red_accent.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/2/2d/Ns1-unsharp.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Laser_effects.jpg/500px-Laser_effects.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/PizBernina3.jpg/500px-PizBernina3.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/47/La_Galera_2.jpg/500px-La_Galera_2.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Costa_rica_santa_elena_skywalk.jpg/500px-Costa_rica_santa_elena_skywalk.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Smoky_forest.jpg/500px-Smoky_forest.jpg";>
+        <img 
src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Alcea_rosea_and_blue_sky.jpg/500px-Alcea_rosea_and_blue_sky.jpg";>
+    </div>
+    <script>
+    // Load theme
+    Galleria.loadTheme('galleria.fullscreen.js');
+    
+    $('#galleria').galleria();
+
+    </script>
+    </body>
+</html>
\ No newline at end of file

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/galleria.fullscreen.css
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/galleria.fullscreen.css?rev=1034970&view=auto
==============================================================================
--- 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/galleria.fullscreen.css
 (added)
+++ 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/galleria.fullscreen.css
 Sun Nov 14 09:54:04 2010
@@ -0,0 +1,42 @@
+html,body{background:#000;}
+.galleria-container{height:100%;overflow:hidden;position:fixed;top:0;left:0;width:100%;background:#000;}
+.galleria-container 
img{-moz-user-select:none;-webkit-user-select:none;-o-user-select:none}
+.galleria-stage{width:100%;height:100%;position:absolute;}
+.galleria-thumbnails-container{position:absolute;bottom:0;z-index:2;padding-top:16px;width:100%;}
+.galleria-thumbnails-tab{opacity:.7;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";filter:alpha(opacity=70);
+    
position:absolute;left:50%;margin-left:-50px;top:0;height:16px;width:100px;background:#000
 url(up.gif) no-repeat 50% 5px;cursor:pointer;
+    
-moz-border-radius-topleft:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;-webkit-border-top-left-radius:4px}
+    
+.galleria-thumbnails-tab:hover{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);}
+.galleria-thumbnails-tab.open,
+.galleria-thumbnails-tab.open:hover{background-image:url(down.gif);opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);}
+.galleria-thumbnails{background:#000;overflow:hidden;}
+.galleria-thumbnails-list{background:#000;padding-top:5px;padding-bottom:5px;overflow:hidden;}
+.galleria-thumbnails 
.galleria-image{width:80px;height:50px;float:left;cursor:pointer;margin-right:5px;}
+.galleria-thumbnails .galleria-image img{background:#000;}
+.galleria-thumbnails .active{cursor:default;}
+.galleria-carousel .galleria-thumbnails-list{border-left:30px solid 
#000;border-right:30px solid #000;}
+.galleria-image-nav{width:100%;height:100%;position:absolute;top:0;left:0;}
+.galleria-image-nav-right,
+.galleria-image-nav-left{width:100px;right:0;top:0;height:100%;background: 
url(r.gif) no-repeat 50% 
50%;position:absolute;cursor:pointer;z-index:2;display:none;}
+.galleria-image-nav-left{left:0;right:auto;background-image:url(l.gif);}
+.galleria-loader{width:30px;height:30px;background:#fff url(loader.gif) 
no-repeat 50% 
50%;position:absolute;top:50%;left:50%;margin-top:-15px;margin-left:-15px;z-index:3;}
+
+.galleria-info{z-index:4;font:11px/1.4 
arial,sans-serif;text-shadow:rgba(0,0,0,.2) 1px 1px 
1px;color:#fff;position:absolute;top:0;width:100%;
+    border-top:2px solid #000;display:none;text-align:center;padding:10px 
0;background:rgba(0,0,0,.4);}
+.galleria-info-text{width:50%;margin:0 auto;}
+.galleria-info-title{font-weight:bold;}
+
+.galleria-thumb-nav-left,
+.galleria-thumb-nav-right{cursor:pointer;display:none;background:url(p.gif) 
no-repeat 50% 
50%;position:absolute;left:5px;top:21px;bottom:5px;width:20px;z-index:3;
+    
opacity:.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);}
+    
+.galleria-thumb-nav-right{background-image:url(n.gif);left:auto;right:5px;}
+.galleria-carousel .galleria-thumb-nav-left,
+.galleria-carousel .galleria-thumb-nav-right{display:block;}
+.galleria-carousel .galleria-thumb-nav-left:hover,
+.galleria-carousel .galleria-thumb-nav-right:hover{background-color:#222;}
+.galleria-thumb-nav-left.disabled,
+.galleria-thumb-nav-right.disabled,
+.galleria-thumb-nav-left.disabled:hover,
+.galleria-thumb-nav-right.disabled:hover{opacity:.2;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";filter:alpha(opacity=20);cursor:default;}

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/galleria.fullscreen.js
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/galleria.fullscreen.js?rev=1034970&view=auto
==============================================================================
--- 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/galleria.fullscreen.js
 (added)
+++ 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/galleria.fullscreen.js
 Sun Nov 14 09:54:04 2010
@@ -0,0 +1,163 @@
+/*
+ * Galleria Fullscreen Theme v. 2.2 2010-10-28
+ * http://galleria.aino.se
+ *
+ * Copyright (c) 2010, Aino
+ * Licensed under the MIT license.
+ */
+
+(function($) {
+
+Galleria.addTheme({
+    name: 'fullscreen',
+    author: 'Galleria',
+    version: '2.2',
+    css: 'galleria.fullscreen.css',
+    defaults: {
+        transition: 'none',
+        image_crop: true,
+        thumb_crop: 'height',
+        // set this to false if you want to keep the thumbnails:
+        _hide_dock: true,
+        // set this to true if you want to shrink the carousel when clicking a 
thumbnail:
+        _close_on_click: false
+    },
+    init: function(options) {
+
+        this.addElement('thumbnails-tab');
+        this.appendChild('thumbnails-container', 'thumbnails-tab');
+
+        var tab      = this.$('thumbnails-tab'),
+            loader   = this.$('loader'),
+            thumbs   = this.$('thumbnails-container'),
+            list     = this.$('thumbnails-list'),
+            infotext = this.$('info-text'),
+            info     = this.$('info'),
+            OPEN     = !options._hide_dock,
+            POS      = 0,
+            CLICK    = Galleria.TOUCH ? 'touchstart' : 'click';
+
+        if (Galleria.IE) {
+            this.addElement('iefix');
+            this.appendChild('container', 'iefix');
+            this.$('iefix').css({
+                zIndex: 3,
+                position: 'absolute',
+                backgroundColor: '#000',
+                opacity: .4
+            });
+        }
+
+        if ( options.thumbnails === false ) {
+            thumbs.hide();
+        }
+
+        var fixCaption = this.proxy(function(img) {
+
+            if (!(img || img.width)) {
+                return;
+            }
+            var w = Math.min(img.width, $(window).width());
+            infotext.width(w - 40);
+            if (Galleria.IE && this.getOptions('show_info')) {
+                
this.$('iefix').width(info.outerWidth()).height(info.outerHeight());
+            }
+        });
+        this.bind(Galleria.RESCALE, function() {
+            POS = this.getStageHeight() - tab.height() - 2;
+            thumbs.css('top', OPEN ? POS - list.outerHeight() + 2 : POS);
+            var img = this.getActiveImage();
+            if (img) {
+                fixCaption(img);
+            }
+        });
+
+        this.bind(Galleria.LOADSTART, function(e) {
+            if (!e.cached) {
+                loader.show().fadeTo(100, 1);
+            }
+            $(e.thumbTarget).css('opacity', 
1).parent().siblings().children().css('opacity', .6);
+        });
+
+        this.bind(Galleria.LOADFINISH, function(e) {
+            loader.fadeOut(300);
+            this.$('info, iefix').toggle(this.hasInfo());
+        });
+
+        this.bind(Galleria.IMAGE, function(e) {
+            fixCaption(e.imageTarget);
+        });
+
+        this.bind(Galleria.THUMBNAIL, function(e) {
+            $(e.thumbTarget).parent(':not(.active)').children().css('opacity', 
.6);
+            $(e.thumbTarget).click(function() {
+                if (OPEN && options._close_on_click) {
+                    tab.click();
+                }
+            });
+        });
+
+        this.trigger(Galleria.RESCALE);
+
+        this.addIdleState(thumbs, { opacity: 0 });
+        this.addIdleState(this.get('info'), { opacity: 0 });
+
+        if (Galleria.IE) {
+            this.addIdleState(this.get('iefix'), { opacity: 0 });
+        }
+
+        this.$('image-nav-left, image-nav-right').css('opacity', 
0.01).hover(function() {
+            $(this).animate({opacity: 1}, 100);
+        }, function() {
+            $(this).animate({opacity: 0});
+        }).show();
+
+        if (options._hide_dock) {
+            tab.click(this.proxy(function() {
+                tab.toggleClass('open', !OPEN);
+                if (!OPEN) {
+                    thumbs.animate({
+                        top: POS - list.outerHeight() + 2
+                    }, 400, 'galleria');
+                } else {
+                    thumbs.animate({
+                        top: POS
+                    }, 400, 'galleria');
+                }
+                OPEN = !OPEN;
+            }));
+        } else {
+            this.bind(Galleria.THUMBNAIL, function() {
+                thumbs.css('top', POS - list.outerHeight() + 2);
+            });
+            tab.css('visibility', 'hidden');
+        }
+
+        this.$('thumbnails').children().hover(function() {
+            $(this).not('.active').children().stop().fadeTo(100, 1);
+        }, function() {
+            $(this).not('.active').children().stop().fadeTo(400, .6);
+        });
+
+        this.enterFullscreen();
+        this.attachKeyboard({
+            escape: function(e) {
+                return false;
+            },
+            up: function(e) {
+                if (!OPEN) {
+                    tab.click();
+                }
+                e.preventDefault();
+            },
+            down: function(e) {
+                if (OPEN) {
+                    tab.click();
+                }
+                e.preventDefault();
+            }
+        });
+    }
+});
+
+})(jQuery);
\ No newline at end of file

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/i.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/i.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/i.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/l.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/l.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/l.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/loader.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/loader.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/loader.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/n.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/n.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/n.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/p.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/p.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/p.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/r.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/r.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/r.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/up.gif
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/up.gif?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/js/galleria/themes/fullscreen/up.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/project/trunk/project/src/site/resources/logo-call/james-logo-1.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-1.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-1.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/project/trunk/project/src/site/resources/logo-call/james-logo-2.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-2.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-2.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/project/trunk/project/src/site/resources/logo-call/james-logo-3.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-3.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-3.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/project/trunk/project/src/site/resources/logo-call/james-logo-4.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-4.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-4.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-5-avatar.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-5-avatar.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-5-avatar.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/project/trunk/project/src/site/resources/logo-call/james-logo-5.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-5.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-5.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-6-avatar.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-6-avatar.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-6-avatar.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/project/trunk/project/src/site/resources/logo-call/james-logo-6.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-6.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-6.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/project/trunk/project/src/site/resources/logo-call/james-logo-7.png
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/resources/logo-call/james-logo-7.png?rev=1034970&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
james/project/trunk/project/src/site/resources/logo-call/james-logo-7.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: james/project/trunk/project/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/james/project/trunk/project/src/site/xdoc/index.xml?rev=1034970&r1=1034969&r2=1034970&view=diff
==============================================================================
--- james/project/trunk/project/src/site/xdoc/index.xml (original)
+++ james/project/trunk/project/src/site/xdoc/index.xml Sun Nov 14 09:54:04 2010
@@ -8,10 +8,16 @@
   </properties>
   
   <head>
+
+    <script src="js/galleria/galleria.js"></script>
   
     <script type="text/javascript">
 
       $(function(){
+      
+        Galleria.loadTheme('js/galleria/themes/classic/galleria.classic.js');
+      
+        $('#james-logo-slideshow').galleria();
 
         $('#tabs').tabs();
 
@@ -20,16 +26,36 @@
             return false;
         });
         
-        $('#james-project-logo').click(function() {
+        $('#james-logo-0-preview').click(function() {
           switchLogo('images/james-project-logo.gif');
         });
 
-        $('#simon-funnell-James2').click(function() {
-          switchLogo('logo-call/simon-funnell-James2_100.jpg');
+        $('#james-logo-1-preview').click(function() {
+          switchLogo('logo-call/james-logo-1.png');
         });
-        
-        $('#eric-charles-james-logo-1').click(function() {
-          switchLogo('logo-call/eric-charles-james-logo-1_100.png');
+
+        $('#james-logo-2-preview').click(function() {
+          switchLogo('logo-call/james-logo-2.png');
+        });
+
+        $('#james-logo-3-preview').click(function() {
+          switchLogo('logo-call/james-logo-3.png');
+        });
+
+        $('#james-logo-4-preview').click(function() {
+          switchLogo('logo-call/james-logo-4.png');
+        });
+
+        $('#james-logo-5-preview').click(function() {
+          switchLogo('logo-call/james-logo-5.png');
+        });
+
+        $('#james-logo-6-preview').click(function() {
+          switchLogo('logo-call/james-logo-6.png');
+        });
+
+        $('#james-logo-7-preview').click(function() {
+          switchLogo('logo-call/james-logo-7.png');
         });
         
         function switchLogo(logoPath) {
@@ -38,13 +64,14 @@
               scrollTop: $('#banner').offset().top
           }, 2000);
        }
-
+       
       });
 
     </script>
     
     <style type="text/css">
       #newsbox {margin: 0 0 0 0;}
+      #james-logo-slideshow{height:200px;width:500px;}
     </style>
 
   </head>
@@ -65,71 +92,51 @@
 
       <div id="tabs-1">
       
-        <subsection name="James Project">
-  
-    <div class="ui-widget">
-      <div class="ui-state-error ui-corner-all" style="padding: 0 .7em;"> 
-        <p><span class="ui-icon ui-icon-alert" style="float: left; 
margin-right: .3em;"></span> 
-        <strong>Hey!</strong>
-        James Server 3.0-M2 is out! <b>Thank you to everyone</b> who 
contributed code, 
-            documentation, bug report, feedback...
-               </p>
-      </div>
-    </div>
-<!-- 
-    Grey version - use the red one for now
-    
        <div class="ui-widget">
                        <div class="ui-state-highlight ui-corner-all" 
style="margin-top: 20px; padding: 0 .7em;"> 
-                               <p><span class="ui-icon ui-icon-circle-plus" 
style="float: left; margin-right: .3em;"></span>
-                               <strong>Hey!</strong> </p>
+                               <p><span class="ui-icon ui-icon-alert" 
style="float: left; margin-right: .3em;"></span>
+                               <strong>Hey!</strong> 
+                                James Server 3.0-M2 is out! <b>Thank you to 
everyone</b> who contributed code, 
+                    documentation, bug report, feedback...
+                               </p>
                        </div>
                </div>
- -->  
+
         <p>The Apache James Project delivers a rich set of open source modules 
and libraries, written in Java, 
            related to Internet mail communication which build into an advanced 
enterprise mail server.</p>
            
-        </subsection>
-         
-        <subsection name="Download James Mail Server">
-        
         <p>
           <span class="minibutton btn-download">
             <a 
href="javascript:window.location='http://james.apache.org/download.cgi#Apache_James_Server';">
-              <span><span class="icon"></span>Early James Server 3.0-M2</span>
+              <span><span class="icon"></span>Download Early James Server 
3.0-M2</span>
             </a>
           </span>
         </p>
         <p>
           <span class="minibutton btn-download">
             <a 
href="javascript:window.location='http://james.apache.org/download.cgi#Apache_James_2.3.2_is_the_stable_version';">
-              <span><span class="icon"></span>Stable James Server 2.3.2</span>
+              <span><span class="icon"></span>Download Stable James Server 
2.3.2</span>
             </a>
           </span>
         </p>
         
-        </subsection>
-           
-        <subsection name="Call for new James Logo">
-        
+        <p>
           <div id="display-call-for-logo-tab">
-            <img src="images/james-logo-square.png"/>
-            &#160;&#160;<a href="#">Help use</a> to design and choose a new 
logo for James.
+            <a href="#"><b>Help use design and choose a new logo for James 
(test logo proposals on this web site).</b></a>
           </div>
+        </p>
         
-        </subsection>
-        
-        <subsection name="Join the Community">
-  
           <p>All are welcome to the Community!  We recommend that Users, 
Developers, Curious and Fans subscribe to the James 
-             <a href='http://james.apache.org/mail.html'>mailing lists</a> and 
follow <a href="http://twitter.com/ApacheJames";>@ApacheJames</a> on Twitter.</p>
+             <a href='http://james.apache.org/mail.html'>mailing lists</a> and 
+             follow <a href="http://twitter.com/ApacheJames";>@ApacheJames</a> 
on Twitter.</p>
+             
+          <p>You can also read the <a 
href="http://wiki.apache.org/james/";>wiki</a> 
+             (discover <a href="http://wiki.apache.org/james/JamesUsers";>who 
uses James</a>,...)</p>
         
           <p>Just like other <a href='http://projects.apache.org'>Apache 
projects</a>, James is developed in an
              <a 
href='http://www.apache.org/foundation/how-it-works.html#meritocracy'>open</a> 
and 
              <a 
href='http://www.apache.org/foundation/how-it-works.html#management'>collaborative
 manner</a>.</p>
            
-        </subsection>
-        
       </div>
       
       <div id="tabs-2">
@@ -221,83 +228,121 @@
 
         <div id="tabs-4">
         
-        
-          <subsection name="Why a new Logo?">
-          
-            <p>We are happy with our current logo, but for the 
-               upcoming James Server 3.0 release, we would like to 
-               give our community the opportunity to create a new image for 
James.</p>
-               
-            <p>Don't be shy, take your inkscape and gimp, and send us on 
-            the James <a href="[email protected]">user 
mailing list</a> 
-            your creations. We will publish them on this page.</p>
-          
-          </subsection>
-        
-          <subsection name="Test and Vote">
-          
-            <p>You can click on some "Preview Button" such as this one to 
preview 
-               the logo on this web site.</p>
-          
-            <p><img src="images/james-logo-square.png"/></p>
-            <div id="james-project-logo">
+          <subsection name="Proposal 1">
+            <div id="james-logo-1-preview">
+              <p><img src="logo-call/james-logo-1.png"/></p>
               <p>
-                <img src="icon/zoom.png"/>
-                Click to reset the upper left logo.
+                <a href="#">Click to change the upper left logo on this page 
and preview this proposal.</a>
               </p>
             </div>
-
-          </subsection>
-          
-          <subsection name="Proposal 1">
-            <p><img src="logo-call/simon-funnell-FeatherJames.jpg"/></p>
           </subsection>
 
           <subsection name="Proposal 2">
-            <p><img src="logo-call/simon-funnell-GreenJames.jpg"/></p>
+            <div id="james-logo-2-preview">
+              <p><img src="logo-call/james-logo-2.png"/></p>
+              <p>
+                <a href="#">Click to change the upper left logo on this page 
and preview this proposal.</a>
+              </p>
+            </div>
           </subsection>
 
           <subsection name="Proposal 3">
-            <p><img src="logo-call/simon-funnell-James.gif"/></p>
+            <div id="james-logo-3-preview">
+              <p><img src="logo-call/james-logo-3.png"/></p>
+              <p>
+                <a href="#">Click to change the upper left logo on this page 
and preview this proposal.</a>
+              </p>
+            </div>
           </subsection>
 
           <subsection name="Proposal 4">
-            <p><img src="logo-call/simon-funnell-James2.jpg"/></p>
-            <div id="simon-funnell-James2">
+            <div id="james-logo-4-preview">
+              <p><img src="logo-call/james-logo-4.png"/></p>
               <p>
-                <img src="icon/zoom.png"/>
-                Click to change the upper left logo on this page and preview 
this proposal.
+                <a href="#">Click to change the upper left logo on this page 
and preview this proposal.</a>
               </p>
             </div>
           </subsection>
 
           <subsection name="Proposal 5">
-            <p><img src="logo-call/simon-funnell-YellowJames.jpg"/></p>
+            <div id="james-logo-5-preview">
+              <p><img src="logo-call/james-logo-5.png"/></p>
+              <p>
+                <a href="#">Click to change the upper left logo on this page 
and preview this proposal.</a>
+              </p>
+            </div>
+            <p><img src="logo-call/james-logo-5-avatar.png"/></p>
           </subsection>
 
           <subsection name="Proposal 6">
-            <p><img src="logo-call/eric-charles-james-logo-1.png"/></p>
-            <p><img src="logo-call/eric-charles-james-logo-1_100.png"/></p>
-            <div id="eric-charles-james-logo-1">
+            <div id="james-logo-6-preview">
+              <p><img src="logo-call/james-logo-6.png"/></p>
               <p>
-                <img src="icon/zoom.png"/>
-                Click to change the upper left logo on this page and preview 
this proposal
+                <a href="#">Click to change the upper left logo on this page 
and preview this proposal.</a>
               </p>
             </div>
+            <p><img src="logo-call/james-logo-6-avatar.png"/></p>
           </subsection>
-       
+
           <subsection name="Proposal 7">
-            <p><img src="logo-call/eric-charles-james-logo-2.png"/></p>
+            <div id="james-logo-7-preview">
+              <p><img src="logo-call/james-logo-7.png"/></p>
+              <p>
+                <a href="#">Click to change the upper left logo on this page 
and preview this proposal.</a>
+              </p>
+            </div>
           </subsection>
 
-          <subsection name="Proposal 8">
-            <p><img src="logo-call/eric-charles-james-logo-3.png"/></p>
-          </subsection>
+          <subsection name="Preview a Logo on this Web Site">
+          
+            <div id="james-logo-0-preview">
+              <p><img src="images/james-logo-square.png"/></p>
+              <p>
+                <a href="#">Click to reset the upper left logo.</a>
+              </p>
+            </div>
 
-          <subsection name="Proposal 9">
-            <p><img src="logo-call/eric-charles-james-logo-4.png"/></p>
           </subsection>
 
+          <subsection name="Why a new Logo?">
+          
+            <p>We are happy with our current logo, but for the 
+               upcoming James Server 3.0 release, we would like to 
+               give our community the opportunity to create a new image for 
James.</p>
+               
+            <p>Don't be shy, take your inkscape and gimp, and send us on 
+               the <a href="mail.html">James Server User mailing list</a> 
+               your creations. We will publish them on this page.</p>
+            
+            <p>We need an horizontal logo (100p height) to be show displayed 
on the upper
+               left corner of this page, an avatar (48x48p) to be used on a 
Twitter stream for example.
+               The used fonts should be redistributable (or commonly available 
on Windows and Linux).
+               The chosen logo should be delivered in SVG format. 
+               We also like the <a 
href="http://www.apache.org/foundation/press/kit/";>Apache feather</a>.</p>
+          
+          </subsection>
+        
+          <subsection name="How to Choose?">
+          
+            <p>Listen <a href="http://james.apache.org/mail.html";>mailing 
list</a> 
+               and <a href="http://twitter.com/ApacheJames";>Twitter</a> for 
the vote.</p>
+               
+            <p>We still don't have any date for this vote, so it's still time 
to submit your proposals.</p>
+            
+          <p>
+            <div id="james-logo-slideshow">
+              <img src="logo-call/james-logo-1.png"/>
+              <img src="logo-call/james-logo-2.png"/>
+              <img src="logo-call/james-logo-3.png"/>
+              <img src="logo-call/james-logo-4.png"/>
+              <img src="logo-call/james-logo-5.png"/>
+              <img src="logo-call/james-logo-6.png"/>
+              <img src="logo-call/james-logo-7.png"/>
+            </div>
+          </p>
+          
+          </subsection>
+          
         </div>
 
         <div id="tabs-5">



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to