You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-dev@james.apache.org by er...@apache.org on 2012/04/16 15:25:02 UTC

svn commit: r1326606 [7/13] - in /james/site/trunk/www: ./ css/ downloads/ images/logos/ js/ js/fancybox/ js/galleria/ js/galleria/plugins/ js/galleria/themes/ js/galleria/themes/classic/ js/galleria/themes/fullscreen/ js/james/ js/jquery/ js/jquery/cs...

Added: james/site/trunk/www/js/galleria/plugins/galleria.flickr.js
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/plugins/galleria.flickr.js?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/galleria/plugins/galleria.flickr.js (added)
+++ james/site/trunk/www/js/galleria/plugins/galleria.flickr.js Mon Apr 16 13:24:58 2012
@@ -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/site/trunk/www/js/galleria/themes/classic/README.rst
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/classic/README.rst?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/galleria/themes/classic/README.rst (added)
+++ james/site/trunk/www/js/galleria/themes/classic/README.rst Mon Apr 16 13:24:58 2012
@@ -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/site/trunk/www/js/galleria/themes/classic/classic-demo.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/classic/classic-demo.html?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/galleria/themes/classic/classic-demo.html (added)
+++ james/site/trunk/www/js/galleria/themes/classic/classic-demo.html Mon Apr 16 13:24:58 2012
@@ -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/site/trunk/www/js/galleria/themes/classic/classic-loader.gif
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/classic/classic-loader.gif?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

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

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

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

Added: james/site/trunk/www/js/galleria/themes/classic/galleria.classic.css
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/classic/galleria.classic.css?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/galleria/themes/classic/galleria.classic.css (added)
+++ james/site/trunk/www/js/galleria/themes/classic/galleria.classic.css Mon Apr 16 13:24:58 2012
@@ -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/site/trunk/www/js/galleria/themes/classic/galleria.classic.js
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/classic/galleria.classic.js?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/galleria/themes/classic/galleria.classic.js (added)
+++ james/site/trunk/www/js/galleria/themes/classic/galleria.classic.js Mon Apr 16 13:24:58 2012
@@ -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/site/trunk/www/js/galleria/themes/fullscreen/b.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/fullscreen/b.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

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

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

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

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

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

Added: james/site/trunk/www/js/galleria/themes/fullscreen/fullscreen-demo.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/fullscreen/fullscreen-demo.html?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/galleria/themes/fullscreen/fullscreen-demo.html (added)
+++ james/site/trunk/www/js/galleria/themes/fullscreen/fullscreen-demo.html Mon Apr 16 13:24:58 2012
@@ -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/site/trunk/www/js/galleria/themes/fullscreen/galleria.fullscreen.css
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/fullscreen/galleria.fullscreen.css?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/galleria/themes/fullscreen/galleria.fullscreen.css (added)
+++ james/site/trunk/www/js/galleria/themes/fullscreen/galleria.fullscreen.css Mon Apr 16 13:24:58 2012
@@ -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/site/trunk/www/js/galleria/themes/fullscreen/galleria.fullscreen.js
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/fullscreen/galleria.fullscreen.js?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/galleria/themes/fullscreen/galleria.fullscreen.js (added)
+++ james/site/trunk/www/js/galleria/themes/fullscreen/galleria.fullscreen.js Mon Apr 16 13:24:58 2012
@@ -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/site/trunk/www/js/galleria/themes/fullscreen/i.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/galleria/themes/fullscreen/i.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

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

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

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

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

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

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

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

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

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

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

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

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

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

Added: james/site/trunk/www/js/james/functions.js
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/james/functions.js?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/james/functions.js (added)
+++ james/site/trunk/www/js/james/functions.js Mon Apr 16 13:24:58 2012
@@ -0,0 +1,23 @@
+/*
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.    
+*/
+
+$(function(){
+//    Galleria.loadTheme('./js/galleria/themes/classic/galleria.classic.js');
+    initIndexPage();
+});

Added: james/site/trunk/www/js/james/index.js
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/james/index.js?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/james/index.js (added)
+++ james/site/trunk/www/js/james/index.js Mon Apr 16 13:24:58 2012
@@ -0,0 +1,94 @@
+/*
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.    
+*/
+
+function initIndexPage() {
+      
+//    $('#james-logo-slideshow').galleria();
+
+    $('#tabs').tabs();
+
+    $('#display-call-for-logo-tab').click(function() {
+    	selectLogoTab();
+    });
+    
+    $('#james-logo-0-preview').click(function() {
+      switchLogo('images/james-project-logo.gif');
+    });
+/*    
+     // This should work, but it does not...
+     // So we explicitelly repeat ourself...
+     for (var i=0; i < 9; i++) {
+      $('#james-logo-' + i + '-preview').click(function() {
+        switchLogo('logo-call/james-logo-'+ i + '.png');
+      });
+    }
+*/  
+    $('#james-logo-1-preview').click(function() {
+        switchLogo('logo-call/james-logo-1.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');
+    });
+    
+    $('#james-logo-8-preview').click(function() {
+        switchLogo('logo-call/james-logo-8.png');
+    });
+    
+    $('#james-logo-9-preview').click(function() {
+        switchLogo('logo-call/james-logo-9.png');
+    });
+    
+    if (window.location.hash == '#logo') {
+    	selectLogoTab();
+    }
+
+}
+
+function switchLogo(logoPath) {
+	$('#bannerLeft img').attr('src', logoPath);
+    $('html, body').animate({
+       scrollTop: $('#banner').offset().top
+    }, 2000);
+}
+
+function selectLogoTab() {
+	 $('#tabs').tabs('select', 3);
+     return false;
+}

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_diagonals-thick_18_b81900_40x40.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_diagonals-thick_18_b81900_40x40.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_diagonals-thick_18_b81900_40x40.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_diagonals-thick_20_666666_40x40.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_diagonals-thick_20_666666_40x40.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_diagonals-thick_20_666666_40x40.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_flat_10_000000_40x100.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_flat_10_000000_40x100.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_flat_10_000000_40x100.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_525d76_1x400.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_525d76_1x400.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_525d76_1x400.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_b2bacd_1x400.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_b2bacd_1x400.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_b2bacd_1x400.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_f6f6f6_1x400.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_f6f6f6_1x400.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_100_f6f6f6_1x400.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_gloss-wave_35_525d76_500x100.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_gloss-wave_35_525d76_500x100.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_gloss-wave_35_525d76_500x100.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_highlight-soft_100_ffffff_1x100.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_highlight-soft_100_ffffff_1x100.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_highlight-soft_100_ffffff_1x100.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_highlight-soft_75_525d76_1x100.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_highlight-soft_75_525d76_1x100.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-bg_highlight-soft_75_525d76_1x100.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_222222_256x240.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_222222_256x240.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_222222_256x240.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_228ef1_256x240.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_228ef1_256x240.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_228ef1_256x240.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_525d76_256x240.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_525d76_256x240.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_525d76_256x240.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_76526c_256x240.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_76526c_256x240.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_76526c_256x240.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_ffd27a_256x240.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_ffd27a_256x240.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_ffd27a_256x240.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_ffffff_256x240.png
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_ffffff_256x240.png?rev=1326606&view=auto
==============================================================================
Binary file - no diff available.

Propchange: james/site/trunk/www/js/jquery/css/custom-theme/images/ui-icons_ffffff_256x240.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: james/site/trunk/www/js/jquery/css/custom-theme/jquery-ui-1.8.5.custom.css
URL: http://svn.apache.org/viewvc/james/site/trunk/www/js/jquery/css/custom-theme/jquery-ui-1.8.5.custom.css?rev=1326606&view=auto
==============================================================================
--- james/site/trunk/www/js/jquery/css/custom-theme/jquery-ui-1.8.5.custom.css (added)
+++ james/site/trunk/www/js/jquery/css/custom-theme/jquery-ui-1.8.5.custom.css Mon Apr 16 13:24:58 2012
@@ -0,0 +1,311 @@
+/*
+ * jQuery UI CSS Framework @VERSION
+ *
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Theming/API
+ */
+
+/* Layout helpers
+----------------------------------*/
+.ui-helper-hidden { display: none; }
+.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
+.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
+.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
+.ui-helper-clearfix { display: inline-block; }
+/* required comment for clearfix to work in Opera \*/
+* html .ui-helper-clearfix { height:1%; }
+.ui-helper-clearfix { display:block; }
+/* end clearfix */
+.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
+
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-disabled { cursor: default !important; }
+
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Overlays */
+.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
+
+
+/*
+ * jQuery UI CSS Framework @VERSION
+ *
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Theming/API
+ *
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS,%20Tahoma,%20Verdana,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=525d76&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=35&borderColorHeader=525d76&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=ffffff&bgTextureContent=03_highlight_soft.png&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=76526c&bgColorHover=b2bacd&bgTextureHover=02_glass.png&bgImgOpacityHover=100&borderColorHover=525d76&fcHover=525d76&iconColorHover=525d76&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=525d76&fcActive=525d76&iconColorActive=525d76&bgColorHighlight=525d76&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=75&border
 ColorHighlight=525d76&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=01_flat.png&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
+ */
+
+
+/* Component containers
+----------------------------------*/
+.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1.1em; }
+.ui-widget .ui-widget { font-size: 1em; }
+.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1em; }
+.ui-widget-content { border: 1px solid #dddddd; background: #ffffff url(images/ui-bg_highlight-soft_100_ffffff_1x100.png) 50% top repeat-x; color: #333333; }
+.ui-widget-header { border: 1px solid #525d76; background: #525d76 url(images/ui-bg_gloss-wave_35_525d76_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
+.ui-widget-header a { color: #ffffff; }
+
+/* Interaction states
+----------------------------------*/
+.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; }
+.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }
+.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #525d76; background: #b2bacd url(images/ui-bg_glass_100_b2bacd_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #525d76; }
+.ui-state-hover a, .ui-state-hover a:hover { color: #525d76; text-decoration: none; }
+.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #525d76; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #525d76; }
+.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #525d76; text-decoration: none; }
+.ui-widget :active { outline: none; }
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #525d76; background: #525d76 url(images/ui-bg_highlight-soft_75_525d76_1x100.png) 50% top repeat-x; color: #363636; }
+.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
+.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; }
+.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }
+.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }
+.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
+.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
+.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
+.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
+.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
+.ui-state-default .ui-icon { background-image: url(images/ui-icons_76526c_256x240.png); }
+.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_525d76_256x240.png); }
+.ui-state-active .ui-icon {background-image: url(images/ui-icons_525d76_256x240.png); }
+.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); }
+.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); }
+
+/* positioning */
+.ui-icon-carat-1-n { background-position: 0 0; }
+.ui-icon-carat-1-ne { background-position: -16px 0; }
+.ui-icon-carat-1-e { background-position: -32px 0; }
+.ui-icon-carat-1-se { background-position: -48px 0; }
+.ui-icon-carat-1-s { background-position: -64px 0; }
+.ui-icon-carat-1-sw { background-position: -80px 0; }
+.ui-icon-carat-1-w { background-position: -96px 0; }
+.ui-icon-carat-1-nw { background-position: -112px 0; }
+.ui-icon-carat-2-n-s { background-position: -128px 0; }
+.ui-icon-carat-2-e-w { background-position: -144px 0; }
+.ui-icon-triangle-1-n { background-position: 0 -16px; }
+.ui-icon-triangle-1-ne { background-position: -16px -16px; }
+.ui-icon-triangle-1-e { background-position: -32px -16px; }
+.ui-icon-triangle-1-se { background-position: -48px -16px; }
+.ui-icon-triangle-1-s { background-position: -64px -16px; }
+.ui-icon-triangle-1-sw { background-position: -80px -16px; }
+.ui-icon-triangle-1-w { background-position: -96px -16px; }
+.ui-icon-triangle-1-nw { background-position: -112px -16px; }
+.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
+.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
+.ui-icon-arrow-1-n { background-position: 0 -32px; }
+.ui-icon-arrow-1-ne { background-position: -16px -32px; }
+.ui-icon-arrow-1-e { background-position: -32px -32px; }
+.ui-icon-arrow-1-se { background-position: -48px -32px; }
+.ui-icon-arrow-1-s { background-position: -64px -32px; }
+.ui-icon-arrow-1-sw { background-position: -80px -32px; }
+.ui-icon-arrow-1-w { background-position: -96px -32px; }
+.ui-icon-arrow-1-nw { background-position: -112px -32px; }
+.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
+.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
+.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
+.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
+.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
+.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
+.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
+.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
+.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
+.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
+.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
+.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
+.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
+.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
+.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
+.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
+.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
+.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
+.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
+.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
+.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
+.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
+.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
+.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
+.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
+.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
+.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
+.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
+.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
+.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
+.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
+.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
+.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
+.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
+.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
+.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
+.ui-icon-arrow-4 { background-position: 0 -80px; }
+.ui-icon-arrow-4-diag { background-position: -16px -80px; }
+.ui-icon-extlink { background-position: -32px -80px; }
+.ui-icon-newwin { background-position: -48px -80px; }
+.ui-icon-refresh { background-position: -64px -80px; }
+.ui-icon-shuffle { background-position: -80px -80px; }
+.ui-icon-transfer-e-w { background-position: -96px -80px; }
+.ui-icon-transferthick-e-w { background-position: -112px -80px; }
+.ui-icon-folder-collapsed { background-position: 0 -96px; }
+.ui-icon-folder-open { background-position: -16px -96px; }
+.ui-icon-document { background-position: -32px -96px; }
+.ui-icon-document-b { background-position: -48px -96px; }
+.ui-icon-note { background-position: -64px -96px; }
+.ui-icon-mail-closed { background-position: -80px -96px; }
+.ui-icon-mail-open { background-position: -96px -96px; }
+.ui-icon-suitcase { background-position: -112px -96px; }
+.ui-icon-comment { background-position: -128px -96px; }
+.ui-icon-person { background-position: -144px -96px; }
+.ui-icon-print { background-position: -160px -96px; }
+.ui-icon-trash { background-position: -176px -96px; }
+.ui-icon-locked { background-position: -192px -96px; }
+.ui-icon-unlocked { background-position: -208px -96px; }
+.ui-icon-bookmark { background-position: -224px -96px; }
+.ui-icon-tag { background-position: -240px -96px; }
+.ui-icon-home { background-position: 0 -112px; }
+.ui-icon-flag { background-position: -16px -112px; }
+.ui-icon-calendar { background-position: -32px -112px; }
+.ui-icon-cart { background-position: -48px -112px; }
+.ui-icon-pencil { background-position: -64px -112px; }
+.ui-icon-clock { background-position: -80px -112px; }
+.ui-icon-disk { background-position: -96px -112px; }
+.ui-icon-calculator { background-position: -112px -112px; }
+.ui-icon-zoomin { background-position: -128px -112px; }
+.ui-icon-zoomout { background-position: -144px -112px; }
+.ui-icon-search { background-position: -160px -112px; }
+.ui-icon-wrench { background-position: -176px -112px; }
+.ui-icon-gear { background-position: -192px -112px; }
+.ui-icon-heart { background-position: -208px -112px; }
+.ui-icon-star { background-position: -224px -112px; }
+.ui-icon-link { background-position: -240px -112px; }
+.ui-icon-cancel { background-position: 0 -128px; }
+.ui-icon-plus { background-position: -16px -128px; }
+.ui-icon-plusthick { background-position: -32px -128px; }
+.ui-icon-minus { background-position: -48px -128px; }
+.ui-icon-minusthick { background-position: -64px -128px; }
+.ui-icon-close { background-position: -80px -128px; }
+.ui-icon-closethick { background-position: -96px -128px; }
+.ui-icon-key { background-position: -112px -128px; }
+.ui-icon-lightbulb { background-position: -128px -128px; }
+.ui-icon-scissors { background-position: -144px -128px; }
+.ui-icon-clipboard { background-position: -160px -128px; }
+.ui-icon-copy { background-position: -176px -128px; }
+.ui-icon-contact { background-position: -192px -128px; }
+.ui-icon-image { background-position: -208px -128px; }
+.ui-icon-video { background-position: -224px -128px; }
+.ui-icon-script { background-position: -240px -128px; }
+.ui-icon-alert { background-position: 0 -144px; }
+.ui-icon-info { background-position: -16px -144px; }
+.ui-icon-notice { background-position: -32px -144px; }
+.ui-icon-help { background-position: -48px -144px; }
+.ui-icon-check { background-position: -64px -144px; }
+.ui-icon-bullet { background-position: -80px -144px; }
+.ui-icon-radio-off { background-position: -96px -144px; }
+.ui-icon-radio-on { background-position: -112px -144px; }
+.ui-icon-pin-w { background-position: -128px -144px; }
+.ui-icon-pin-s { background-position: -144px -144px; }
+.ui-icon-play { background-position: 0 -160px; }
+.ui-icon-pause { background-position: -16px -160px; }
+.ui-icon-seek-next { background-position: -32px -160px; }
+.ui-icon-seek-prev { background-position: -48px -160px; }
+.ui-icon-seek-end { background-position: -64px -160px; }
+.ui-icon-seek-start { background-position: -80px -160px; }
+/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
+.ui-icon-seek-first { background-position: -80px -160px; }
+.ui-icon-stop { background-position: -96px -160px; }
+.ui-icon-eject { background-position: -112px -160px; }
+.ui-icon-volume-off { background-position: -128px -160px; }
+.ui-icon-volume-on { background-position: -144px -160px; }
+.ui-icon-power { background-position: 0 -176px; }
+.ui-icon-signal-diag { background-position: -16px -176px; }
+.ui-icon-signal { background-position: -32px -176px; }
+.ui-icon-battery-0 { background-position: -48px -176px; }
+.ui-icon-battery-1 { background-position: -64px -176px; }
+.ui-icon-battery-2 { background-position: -80px -176px; }
+.ui-icon-battery-3 { background-position: -96px -176px; }
+.ui-icon-circle-plus { background-position: 0 -192px; }
+.ui-icon-circle-minus { background-position: -16px -192px; }
+.ui-icon-circle-close { background-position: -32px -192px; }
+.ui-icon-circle-triangle-e { background-position: -48px -192px; }
+.ui-icon-circle-triangle-s { background-position: -64px -192px; }
+.ui-icon-circle-triangle-w { background-position: -80px -192px; }
+.ui-icon-circle-triangle-n { background-position: -96px -192px; }
+.ui-icon-circle-arrow-e { background-position: -112px -192px; }
+.ui-icon-circle-arrow-s { background-position: -128px -192px; }
+.ui-icon-circle-arrow-w { background-position: -144px -192px; }
+.ui-icon-circle-arrow-n { background-position: -160px -192px; }
+.ui-icon-circle-zoomin { background-position: -176px -192px; }
+.ui-icon-circle-zoomout { background-position: -192px -192px; }
+.ui-icon-circle-check { background-position: -208px -192px; }
+.ui-icon-circlesmall-plus { background-position: 0 -208px; }
+.ui-icon-circlesmall-minus { background-position: -16px -208px; }
+.ui-icon-circlesmall-close { background-position: -32px -208px; }
+.ui-icon-squaresmall-plus { background-position: -48px -208px; }
+.ui-icon-squaresmall-minus { background-position: -64px -208px; }
+.ui-icon-squaresmall-close { background-position: -80px -208px; }
+.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
+.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
+.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
+.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
+.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
+.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Corner radius */
+.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; }
+.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
+.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
+.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
+.ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
+.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
+.ui-corner-right {  -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
+.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
+.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
+
+/* Overlays */
+.ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
+.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/*
+ * jQuery UI Tabs @VERSION
+ *
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT or GPL Version 2 licenses.
+ * http://jquery.org/license
+ *
+ * http://docs.jquery.com/UI/Tabs#theming
+ */
+.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
+.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
+.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
+.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
+.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
+.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
+.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
+.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
+.ui-tabs .ui-tabs-hide { display: none !important; }