	var onMouseOutOpacity = .7;
	if(typeof($) !== 'undefined') {
	$(document).ready(
		function(){
			var galleryHTML = '<div id="thumbs" class="navigation">' +
				'<ul class="thumbs noscript">';
			for(var i=1; i<12; i++){
				galleryHTML += '<li>' +
					'<a title="Five open-air theatre performances on federalism were held on different campuses in Kathmandu Valley in September 2009.<br />Photos &copy;: Rita Rai and Cecilia Bylesjö/IDEA" class="thumb" href="/asia_pacific/nepal/images/glossary_launch/Selected' + i + '.jpg">' +
					'<img alt="Five open-air theatre performances on federalism were held on different campuses in Kathmandu Valley in September 2009." src="/asia_pacific/nepal/images/glossary_launch/thumbs/Selected' + i + '.jpg"/>' +
					'</a></li>';
			} 
			galleryHTML += '</ul></div>';
			
			galleryHTML += '<div id="gallery" class="content">' +
			'<div id="controls" class="controls"></div>' +
			'<div id="loading" class="loader"></div>' +
			'<div id="slideshow_wrapper" class="slideshow_wrapper">' +
			'<div id="slideshow" class="slideshow"></div>' +
			'<div id="caption" class="embox"></div>' +
			'</div>	</div>';			

			galleriffic.injectGallery('glossaryGallery', galleryHTML);

			$('.navigation ul.thumbs li').css('opacity', onMouseOutOpacity)
				.hover(
					function () {
						$(this).not('.selected').fadeTo('fast', 1.0);
					}, 
					function () {
						$(this).not('.selected').fadeTo('fast', onMouseOutOpacity);
					}
				);
				
				$('#gallery').galleriffic('#thumbs', {
					delay:                  5000,
					numThumbs:              6,
					preloadAhead:           10,
					enableTopPager:         true,
					enableBottomPager:      false,
					imageContainerSel:      '#slideshow',
					controlsContainerSel:   '#controls',
					captionContainerSel:    '#caption',
					loadingContainerSel:    '#loading',
					renderSSControls:       true,
					renderNavControls:      true,
					playLinkText:           'Play Slideshow',
					pauseLinkText:          'Pause Slideshow',
					prevLinkText:           '&lsaquo; Previous Photo',
					nextLinkText:           'Next Photo &rsaquo;',
					nextPageLinkText:       'Next &rsaquo;',
					prevPageLinkText:       '&lsaquo; Prev',
					enableHistory:          false,
					autoStart:              false,
					onChange:               function(prevIndex, nextIndex) {
						$('#thumbs ul.thumbs').children()
							.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
							.eq(nextIndex).fadeTo('fast', 1.0);
					},
					onTransitionOut:        function(callback) {
						$('#slideshow_wrapper, #caption').fadeOut('fast', callback);
					},
					onTransitionIn:         function() {
						$('#caption').html('Five open-air theatre performances on federalism were held on different campuses in Kathmandu Valley in September 2009.<br />Photos &copy;: Rita Rai and Cecilia Bylesjö/IDEA');
						$('#slideshow_wrapper, #caption').fadeIn('fast');
					},
					onPageTransitionOut:    function(callback) {
						$('#thumbs ul.thumbs').fadeOut('fast', callback);
					},
					onPageTransitionIn:     function() {
						$('#thumbs ul.thumbs').fadeIn('fast');
					}					
				});
			$('div.content').css('display', 'block');
		}
	);
	}
