/* ------------------------------------------------------------------------
	Class: prettyPhoto
	Use: Lightbox clone for jQuery
	Author: Stephane Caron (http://www.no-margin-for-errors.com)
	Version: 2.4.2
------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------
	Modified: o2 Creative Solutions (http://www.o2creativesolutions.com)
	Version: 1.0
------------------------------------------------------------------------- */

var $pp_pic_holder;
var $ppt;

(function($) {
	$.fn.prettyPhoto = function(settings) {
		// Define Global Variables
		var doresize = true;
		var percentBased = false;
		var imagesArray = [];
		var setPosition = 0; /* Position in the set */
		var pp_contentHeight;
		var pp_contentWidth;
		var pp_containerHeight;
		var pp_containerWidth;
		var pp_type = 'image';
	
		// Define Global Elements
		var $caller;
		var $scrollPos = _getScroll();
		
		// Fallback to a supported theme for IE6
		if($.browser.msie && $.browser.version == 6 && (settings.theme == 'light_rounded' || settings.theme == 'dark_rounded' || settings.theme == 'dark_square')){
			settings.theme = "light_square";
		}
		
		// Browser Integration (Scroll / Resize / "Keypress") Support
		//$(window).scroll(function(){ $scrollPos = _getScroll(); _centerPicture(); });
		$(window).resize(function(){ _centerPicture(); _resizeOverlay(); });
		$(document).keydown(function(e){
			//alert(e);
			switch(e.keyCode){
				case 37:
					if (setPosition == 1) return;
					changePicture('previous');
					break;
				case 39:
					if (setPosition == setCount) return;
					changePicture('next');
					break;
				case 27:
					close();
					break;
			};
	    });
 
		// jQuery Extension Parameters
		settings = jQuery.extend({
			animationSpeed: 'fast', 		/* fast/slow/normal */
			padding: 40, 					/* padding for each side of the picture */
			opacity: 0.95, 					/* Value between 0 and 1 */
			showTitle: true, 				/* true/false */
			allowresize: true, 				/* true/false */
			counter_separator_label: '/', 	/* The separator for the gallery counter 1 "of" 2 */
			theme: 'light_rounded', 		/* light_rounded / dark_rounded / light_square / dark_square */
			callback: function(){}
		}, settings);
	
		$(this).each(function(){
			var hasTitle = false;
			var isSet = false;
			var setCount = 0; 				/* Total images in the set */
			var arrayPosition = 0; 			/* Total position in the array */
			
			imagesArray[imagesArray.length] = this;
			$(this).bind('click',function(){
				open(this);
				return false;
			});
		});
		
		// "init" Function
		function open(el) {
			$caller = $(el);
		
			// Find out if the picture is part of a set
			theRel = $caller.attr('rel');
			galleryRegExp = /\[(?:.*)\]/;
			theGallery = galleryRegExp.exec(theRel);
		
			// Calculate the number of items in the set, and the position of the clicked picture.
			isSet = false;
			setCount = 0;
			
			_getFileType();
			
			for (i = 0; i < imagesArray.length; i++){
				if($(imagesArray[i]).attr('rel').indexOf(theGallery) != -1){
					setCount++;
					if(setCount > 1) isSet = true;

					if($(imagesArray[i]).attr('href') == $caller.attr('href')){
						setPosition = setCount;
						arrayPosition = i;
					};
				};
			};
		
			_buildOverlay();

			// Display the current position
			$pp_pic_holder.find('p.currentTextHolder').html(getPicturePositionHTML(setPosition, setCount));

			// Position the picture in the center of the viewing area
			_centerPicture();
		
			$('#pp_full_res').hide();
			$pp_pic_holder.find('.pp_loaderIcon').show();
		};
		
		// Primary "ShowImage" Function
		// Handles positioning and placement of images
		// Calls "_showContent(); & _showCloseButton"
		showimage = function(width,height,containerWidth,containerHeight,contentHeight,contentWidth,resized){
			$('.pp_loaderIcon').hide();
			
			// Opera Browser Window Dimension Compatability Fix
			if($.browser.opera) {
				windowHeight = window.innerHeight;
				windowWidth = window.innerWidth;
			}else{
				windowHeight = $(window).height();
				windowWidth = $(window).width();
			};
			
			$pp_pic_holder.find('.pp_content').height(contentHeight);
			
			projectedTop = $scrollPos['scrollTop'] + ((windowHeight/2) - (containerHeight/2));
			if(projectedTop < 0) projectedTop = 0 + $pp_pic_holder.find('.ppt').height();

			$pp_pic_holder.css({
					'top' : projectedTop,
					'left' :((windowWidth/2) - (containerWidth/2))
					});
			$pp_pic_holder.width(containerWidth);


			//$pp_pic_holder.width(containerWidth);
			$pp_pic_holder.find('.pp_hoverContainer,#fullResImage').height(height).width(width);
			
			// Fade the new image
			$pp_pic_holder.find('#pp_full_res').fadeIn(settings.animationSpeed,function(){
				$(this).find('object,embed').css('visibility','visible');
				
				//Auto Play
				if($('#lb').data("autoPlayIsRunning"))
				{
					clearTimeout($('#lb').data("autoPlayTimer"));
					$('#lb').data("autoPlayTimer",setTimeout (  function(){ if(setPosition == setCount) return; changePicture('next');}, $('#lb').data("autoPlayDelay")));
				}
				
			});

			// Show the nav elements
			_showContent();
			_showCloseButton();
			
			// Fade the resizing link if the image is resized
			if(resized) $('a.pp_expand,a.pp_contract').fadeIn(settings.animationSpeed);
		};
		
		// Close Button "Fade Out"
		function _showCloseButton(){
			$pp_pic_holder.find('.pp_right').fadeIn(2000)
		}
		
		// Show content, inherits positioning from CSS
		function _showContent(){
			// Show the nav
			if(isSet && pp_type=="image") { $pp_pic_holder.find('.pp_hoverContainer').fadeIn(settings.animationSpeed); }else{ $pp_pic_holder.find('.pp_hoverContainer').hide(); }
			$pp_pic_holder.find('.pp_details').fadeIn(settings.animationSpeed);
			$('.slideShowTitle').fadeIn(settings.animationSpeed);

			// Show the title
			/*
			if(settings.showTitle && hasTitle){
				$ppt.css({
					'top' : $pp_pic_holder.offset().top - 22,
					'left' : $pp_pic_holder.offset().left + (settings.padding/2),
					'display' : 'none'
				});
			
				$ppt.fadeIn(settings.animationSpeed);
			};
			*/
		}
		
		function _hideContent(){
			// Fade out the current picture
			$pp_pic_holder.find('.pp_hoverContainer,.pp_details').fadeOut(settings.animationSpeed);
			$pp_pic_holder.find('#pp_full_res object,#pp_full_res embed').css('visibility','hidden');
			$pp_pic_holder.find('#pp_full_res').fadeOut(settings.animationSpeed,function(){
				$('.pp_loaderIcon').show();
			
				// Preload the image
				_preload();
			});
			
			// Hide the title
			$ppt.fadeOut(settings.animationSpeed);

		}
	
		function changePicture(direction){
			clearTimeout($('#lb').data("autoPlayTimer"));
			if(direction == 'previous') {
				arrayPosition--;
				setPosition--;
			}else{
				arrayPosition++;
				setPosition++;
			};

			if(arrayPosition < 0)
			{
				arrayPosition = 0;
				setPosition = 1;
				return;
			}
			
			if(arrayPosition >= imagesArray.length)
			{
				arrayPosition = imagesArray.length-1;
				setPosition = arrayPosition+1;
				return;
			}
			
			// Allow the resizing of the images
			if(!doresize) doresize = true;

			_hideContent();
			$('a.pp_expand,a.pp_contract').fadeOut(settings.animationSpeed,function(){
				$(this).removeClass('pp_contract').addClass('pp_expand');
			});
		};
	
		function close(){
			$pp_pic_holder.find('object,embed').css('visibility','hidden');
			
			$('div.pp_pic_holder,div.ppt').fadeOut(settings.animationSpeed);
			
			$('div.pp_overlay').fadeOut(settings.animationSpeed, function(){
				$('div.pp_overlay,div.pp_pic_holder,div.ppt').remove();
			
				// To fix the bug with IE select boxes
				if($.browser.msie && $.browser.version == 6){
					$('select').css('visibility','visible');
				};
				
				settings.callback();
			});
			
			doresize = true;
		};
	
		function _checkPosition(){
			// If at the end, hide the next link
			if(setPosition == setCount) {
				$pp_pic_holder.find('a.pp_arrow_next').css('visibility','hidden');
				$pp_pic_holder.find('a.pp_arrow_next').addClass('disabled').unbind('click');
			}else{ 
				$pp_pic_holder.find('a.pp_arrow_next').css('visibility','visible');
				$pp_pic_holder.find('a.pp_arrow_next.disabled').removeClass('disabled').bind('click',function(){
					changePicture('next');
					return false;
				});
			};
		
			// If at the beginning, hide the previous link
			if(setPosition == 1) {
				$pp_pic_holder.find('a.pp_arrow_previous').css('visibility','hidden');
				$pp_pic_holder.find('a.pp_arrow_previous').addClass('disabled').unbind('click');
			}else{
				$pp_pic_holder.find('a.pp_arrow_previous').css('visibility','visible');
				$pp_pic_holder.find('a.pp_arrow_previous.disabled').removeClass('disabled').bind('click',function(){
					changePicture('previous');
					return false;
				});
			};
		
			// Change the current picture text
//			$pp_pic_holder.find('div.currentTextHolder').html(getPicturePositionHTML(setPosition, setCount));
			$pp_pic_holder.find('div.pp_pageSystem').html(getPicturePositionHTML(setPosition, setCount));		
			
			$caller = (isSet) ? $(imagesArray[arrayPosition]) : $caller;
			_getFileType();

			 if($caller.attr('title') != null && $caller.attr('title') != undefined && $caller.attr('title').length > 0){
				$pp_pic_holder.find('.slideShowTitle').html(getTitleHTML($caller.attr('title')));			
			}else{
				$pp_pic_holder.find('.slideShowTitle').html(getTitleHTML($('#lb').data("projectTitle")));
			};
			
			
			if($caller.find('img').attr('alt') && settings.showTitle){
				hasTitle = true;
				$ppt.html(unescape($caller.find('img').attr('alt')));
			}else{
				hasTitle = false;
			};
			$('#navCenter').attr('class',$caller.attr('class'));
		};
	
		function getPicturePositionHTML(position, count)
		{
			return '<img src="fontImage/file.drawtext2.php?text=\''+position+' / '+count+'\'&font=\'Verlag-Light.ttf\'&size=10&color=0x22274a&bgcolor=0xd8d8d8&bgtrans=true&palette=1024" class="pageNumber"/>'
		}
		
		function getTitleHTML(text)
		{
			var projectLink=null;
			if(text.substr(0,2) == "[[")
			{
				var textParts = text.split("]]");
				projectLink = textParts[0].substr(2);
				text = textParts[1]; 

			}
			//text = encode(text);
			
			var imgTag = '<img src="fontImage/file.drawtext2.php?text=\''+encodeURI(text)+'\'&font=\'Verlag-Light.ttf\'&size=16&color=0x222222&bgcolor=0xaeafae&bgtrans=true&palette=1024" />';
			
			if(projectLink !=null)
				return '<a href=\'' + projectLink + '\'>'+imgTag+'</a>';
			else
				return imgTag; 
			
		}
		
		function _fitToViewport(width,height){
			hasBeenResized = false;
		
			_getDimensions(width,height);
			
			// Define them in case there's no resize needed
			imageWidth = width;
			imageHeight = height;

			windowHeight = $(window).height();
			windowWidth = $(window).width();
		
			if( ((pp_containerWidth > windowWidth) || (pp_containerHeight > windowHeight)) && doresize && settings.allowresize && !percentBased) {
				hasBeenResized = true;
				notFitting = true;
			
				while (notFitting){
					if((pp_containerWidth > windowWidth)){
						imageWidth = (windowWidth - 200);
						imageHeight = (height/width) * imageWidth;
					}else if((pp_containerHeight > windowHeight)){
						imageHeight = (windowHeight - 200);
						imageWidth = (width/height) * imageHeight;
					}else{
						notFitting = false;
					};

					pp_containerHeight = imageHeight;
					pp_containerWidth = imageWidth;
				};
			
				_getDimensions(imageWidth,imageHeight);
			};

			return {
				width:imageWidth,
				height:imageHeight,
				containerHeight:pp_containerHeight,
				containerWidth:pp_containerWidth,
				contentHeight:pp_contentHeight,
				contentWidth:pp_contentWidth,
				resized:hasBeenResized
			};
		};
		
		function _getDimensions(width,height){
			$pp_pic_holder.find('.pp_details').width(width).find('.pp_description').width(width - parseFloat($pp_pic_holder.find('a.pp_close').css('width'))); /* To have the correct height */
			
			var h1 = $pp_pic_holder.find('.pp_details').height();
			var h2 = $pp_pic_holder.find('.pp_details').css('marginTop');
			var h3 = $pp_pic_holder.find('.pp_details').css('marginBottom');
			
			//this issue comes up in IE8
			if(h2 == "auto")
				h2 = 0;
			if(h3 == "auto")
				h3 = 0;
				
			// Get the container size, to resize the holder to the right dimensions
			pp_contentHeight = height + $pp_pic_holder.find('.pp_details').height() + parseFloat(h2) + parseFloat(h3);
			pp_contentWidth = width;
			pp_containerHeight = pp_contentHeight + $pp_pic_holder.find('.ppt').height() + $pp_pic_holder.find('.pp_top').height() + $pp_pic_holder.find('.pp_bottom').height();
			pp_containerWidth = width;
		}
		
		
	
		function _getFileType(){
			if ($caller.attr('href').match(/youtube\.com\/watch/i)) {
				pp_type = 'youtube';
			}else if($caller.attr('href').indexOf('.mov') != -1){ 
				pp_type = 'quicktime';
			}else if($caller.attr('href').indexOf('.swf') != -1){
				pp_type = 'flash';
			}else if($caller.attr('href').indexOf('iframe') != -1){
				pp_type = 'iframe'
			}else{
				pp_type = 'image';
			}
		}
	
		function _centerPicture(){
			if ($pp_pic_holder){ if($pp_pic_holder.size() == 0){ return; }}else{ return; }; //Make sure the gallery is open

			if($.browser.opera) {
				windowHeight = window.innerHeight;
				windowWidth = window.innerWidth;
			}else{
				windowHeight = $(window).height();
				windowWidth = $(window).width();
			};
		
			if(doresize) {
				$pHeight = $pp_pic_holder.height();
				$pWidth = $pp_pic_holder.width();
				$tHeight = $ppt.height();
				
				projectedTop = (windowHeight/2) + $scrollPos['scrollTop'] - ($pHeight/2);
				if(projectedTop < 0) projectedTop = 0 + $tHeight;
				
				$pp_pic_holder.css({
					'top': projectedTop,
					'left': (windowWidth/2) + $scrollPos['scrollLeft'] - ($pWidth/2)
				});
		
				$ppt.css({
					'top' : projectedTop - $tHeight,
					'left' : (windowWidth/2) + $scrollPos['scrollLeft'] - ($pWidth/2) + (settings.padding/2)
				});
			};
		};
	
		function _preload(){
			// Hide the next/previous links if on first or last images.
			_checkPosition();
		
			if(pp_type == 'image'){
				// Set the new image
				imgPreloader = new Image();
		
				// Preload the neighbour images
				nextImage = new Image();
				if(isSet && setPosition > setCount) nextImage.src = $(imagesArray[arrayPosition + 1]).attr('href');
				prevImage = new Image();
				if(isSet && imagesArray[arrayPosition - 1]) prevImage.src = $(imagesArray[arrayPosition - 1]).attr('href');

				pp_typeMarkup = '<img id="fullResImage" src="" />';

				var titleText = $caller.attr('title');
				if(titleText.substr(0,2) == "[[")
				{
					var textParts = titleText.split("]]");
					pp_typeMarkup = "<a href='"+ textParts[0].substr(2) + "'/>" +pp_typeMarkup+"</a>" ;
					
				}				
				$pp_pic_holder.find('#pp_full_res')[0].innerHTML = pp_typeMarkup;

				$pp_pic_holder.find('.pp_content').css('overflow','hidden');
				$pp_pic_holder.find('#fullResImage').attr('src',$caller.attr('href'));

				imgPreloader.onload = function(){
					var correctSizes = _fitToViewport(imgPreloader.width,imgPreloader.height);
					imgPreloader.width = correctSizes['width'];
					imgPreloader.height = correctSizes['height'];
					showimage(imgPreloader.width,imgPreloader.height,correctSizes["containerWidth"],correctSizes["containerHeight"],correctSizes["contentHeight"],correctSizes["contentWidth"],correctSizes["resized"]);
				};
		
				imgPreloader.src = $caller.attr('href');
			}else{
				// Get the dimensions
				movie_width = ( parseFloat(grab_param('width',$caller.attr('href'))) ) ? grab_param('width',$caller.attr('href')) : 425;
				movie_height = ( parseFloat(grab_param('height',$caller.attr('href'))) ) ? grab_param('height',$caller.attr('href')) : 344;
				
				// If the size is % based
				if(movie_width.indexOf('%') != -1 || movie_height.indexOf('%') != -1){
					movie_height = ($(window).height() * parseFloat(movie_height) / 100) - 100;
					movie_width = ($(window).width() * parseFloat(movie_width) / 100) - 100;
					parsentBased = true;
				}else{
					movie_height = parseFloat(movie_height);
					movie_width = parseFloat(movie_width);
				}
				
				if(pp_type == 'quicktime'){ movie_height+=13; }
				
				// Fit them to viewport
				correctSizes = _fitToViewport(movie_width,movie_height);
				
				if(pp_type == 'youtube'){
					pp_typeMarkup = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+correctSizes['width']+'" height="'+correctSizes['height']+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.youtube.com/v/'+grab_param('v',$caller.attr('href'))+'" /><embed src="http://www.youtube.com/v/'+grab_param('v',$caller.attr('href'))+'" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+correctSizes['width']+'" height="'+correctSizes['height']+'"></embed></object>'
				}else if(pp_type == 'quicktime'){
					pp_typeMarkup = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="'+correctSizes['height']+'" width="'+correctSizes['width']+'"><param name="src" value="'+$caller.attr('href')+'"><param name="autoplay" value="true"><param name="type" value="video/quicktime"><embed src="'+$caller.attr('href')+'" height="'+correctSizes['height']+'" width="'+correctSizes['width']+'" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>';
				}else if(pp_type == 'flash'){
					flash_vars = $caller.attr('href');
					flash_vars = flash_vars.substring($caller.attr('href').indexOf('flashvars') + 10,$caller.attr('href').length);

					filename = $caller.attr('href');
					filename = filename.substring(0,filename.indexOf('?'));

					pp_typeMarkup = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+correctSizes['width']+'" height="'+correctSizes['height']+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="'+filename+'?'+flash_vars+'" /><embed src="'+filename+'?'+flash_vars+'" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+correctSizes['width']+'" height="'+correctSizes['height']+'"></embed></object>';
				}else if(pp_type == 'iframe'){
					movie_url = $caller.attr('href');
					//movie_url = movie_url.substr(0,movie_url.indexOf('?'));

					pp_typeMarkup = '<iframe src ="'+movie_url+'" width="'+(correctSizes['width']-10)+'" height="'+(correctSizes['height']-10)+'" frameborder="no"></iframe>';
				}
				
				
				var titleText = $caller.attr('title');
				if(titleText.substr(0,2) == "[[")
				{
					var textParts = titleText.split("]]");
					pp_typeMarkup = "<a href='"+ textParts[0].substr(2) + "'/>" +pp_typeMarkup+"</a>" ;
					
				}
				// Append HTML
				$pp_pic_holder.find('#pp_full_res')[0].innerHTML = pp_typeMarkup;
				
				// Show content
				showimage(correctSizes['width'],correctSizes['height'],correctSizes["containerWidth"],correctSizes["containerHeight"],correctSizes["contentHeight"],correctSizes["contentWidth"],correctSizes["resized"]);
			}
			
			
			
		};
	
		function _getScroll(){
			if (self.pageYOffset) {
				scrollTop = self.pageYOffset;
				scrollLeft = self.pageXOffset;
			} else if (document.documentElement && document.documentElement.scrollTop) {	 // Explorer 6 Strict
				scrollTop = document.documentElement.scrollTop;
				scrollLeft = document.documentElement.scrollLeft;
			} else if (document.body) {// all other Explorers
				scrollTop = document.body.scrollTop;
				scrollLeft = document.body.scrollLeft;	
			}
			
			return {scrollTop:scrollTop,scrollLeft:scrollLeft};
		};
	
		function _resizeOverlay() {
			$('div.pp_overlay').css({
				'height':$(document).height(),
				'width':$(window).width()
			});
		};
	
		function _buildOverlay(){
			toInject = "";
			
			// Build the background overlay div
			toInject += "<div class='pp_overlay' ></div>";
			
			// Define the markup to append, depending on the content type.
			if(pp_type == 'image'){
				pp_typeMarkup = '<img id="fullResImage" src="" />';
			}else{
				pp_typeMarkup = '';
			}
			
			var projectTitle = getTitleHTML($('#lb').data("projectTitle"));//'<img src="fontImage/file.drawtext2.php?text=\''+$('#lb').data("projectTitle")+'\'&font=\'Verlag-Light.ttf\'&size=18&color=0x222222&bgcolor=0xaeafae&bgtrans=true&palette=1024" class="pageNumber" />'
			
			//if($('#lb').data("projectID") != 0)
			//	projectTitle = '<a href="project.php?p='+$('#lb').data("projectID")+'">'+projectTitle+'</a>';
			
			
			// Basic HTML for the picture holder
			toInject += '<div class="pp_pic_holder" style="position:absolute;top:0px;"> \
							<div class="pp_top">\
								<div class="pp_middle"><div class="slideShowTitle">'+projectTitle+'</div></div>\
								<div class="pp_right">\
									<a class="pp_close" href="#"><img src="http://www.o2creativesolutions.com/v4/imagesX/slimbox_Button_Close.png" class="swapImage {src: \'http://www.o2creativesolutions.com/v4/imagesX/slimbox_Button_Close_o.png\'}" alt="button_lightbox_close" width="42" height="42"/></a>\
								</div>\
							</div>\
							<div class="pp_content">\
								<div id="pp_full_res">'+ pp_typeMarkup +'</div>\
								<div class="pp_details clearfix"></div>\
							</div>\
							<div class="pp_nav">\
								<div class="navLeft">\
									<a href="#" class="pp_arrow_previous"><img src="images/button_slimbox_previous.gif " id="lightboxPrevious" alt="Previous" width="108" height="31" class="swapImage {src: \'images/button_slimbox_previous_o.gif\'}"  /></a>\
								</div>\
								<div id="navCenter" class="navCenterVertical">\
									<div id="playPause" class="playPauseHidden">\
										<a href="#" id="playButton" class="playButtonHidden"><img src="http://www.o2creativesolutions.com/v4/imagesX/slimbox_Footer_PlayButton.gif" width="27" height="31" alt="Play" class="swapImage {src: \'http://www.o2creativesolutions.com/v4/imagesX/slimbox_Footer_PlayButton_o.gif\'}" /></a><a href="#" id="pauseButton" class="pauseButtonHidden"><img src="http://www.o2creativesolutions.com/v4/imagesX/slimbox_Footer_PauseButton.gif" width="27" height="31" alt="Pause" class="swapImage {src: \'http://www.o2creativesolutions.com/v4/imagesX/slimbox_Footer_PauseButton_o.gif\'}" /></a>\
									</div>\
									<div class="pp_pageSystem">'+getPicturePositionHTML(0,0)+'</div>\
								</div>\
								<div class="navRight">\
									<a href="#" class="pp_arrow_next"><img src="images/button_slimbox_next.gif" id="lightboxNext" alt="Next" class="swapImage {src: \'images/button_slimbox_next_o.gif\'}" width="108" height="31" /></a>\
								</div>\
							</div>\
						</div>';
			
			// Basic html for the title holder
			toInject += '<div class="ppt"></div>';
			
			$('body').append(toInject);
			
			//Auto Control Area
			if($('#lb').data("displayAutoPlayControls"))
			{
				$('#playPause').removeClass("playPauseHidden");
			}	
			
			if($('#lb').data("autoPlayIsRunning"))
			{
				$('#playButton').addClass("playButtonHidden");
				$('#pauseButton').removeClass("pauseButtonHidden");
			}
			else
			{
				$('#playButton').removeClass("playButtonHidden");
				$('#pauseButton').addClass("pauseButtonHidden");
			}
			
			$('#playButton').click(function()
			{
				$('#lb').data("autoPlayIsRunning", true);
				$('#playButton').addClass("playButtonHidden");
				$('#pauseButton').removeClass("pauseButtonHidden");
				clearTimeout($('#lb').data("autoPlayTimer"));
				$('#lb').data("autoPlayTimer",setTimeout (  function(){ changePicture('next');}, $('#lb').data("autoPlayDelay")));

				return false;
			});
			$('#pauseButton').click(function()
			{
				$('#lb').data("autoPlayIsRunning", false);
				$('#playButton').removeClass("playButtonHidden");
				$('#pauseButton').addClass("pauseButtonHidden");	
				clearTimeout($('#lb').data("autoPlayTimer"));
				return false;
			});
			
			
			//Add hover effect to the buttons
			$('.pp_pic_holder img.Rollover').imghover({fade:true});
			$.swapImage(".pp_pic_holder .swapImage"); 
			//$.swapImage(".swapImage"); 
			
			$('.pp_pic_holder .lightswitch').click(function () 
			{ 
//				var isBlack = $(".pp_overlay").data("isBlack");
//				if(isBlack == null) isBlack = false;
				
				clearInterval($(".pp_overlay").data("jFadeTimer"));
				
				//Toggle the color setting
				$(".pp_overlay").data("isBlack", !($(".pp_overlay").data("isBlack") == true));
				
			
				$('.pp_pic_holder .lightswitch img').attr("src",$(".pp_overlay").data("isBlack") ? "images/button_slimbox_lightswitch_off.gif" :"images/button_slimbox_lightswitch_on.gif" )
				
				//set the fade to colot
				var fadeTo = $(".pp_overlay").data("isBlack") ? "000000" : "e1e1e1";
				
				//get fade from rgb
				var fadeFromRGB = $(".pp_overlay").css("background-color");
				
				//conver to hex
				var parts = fadeFromRGB.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);

				delete (parts[0]);
				for (var i = 1; i <= 3; ++i) {
				   parts[i] = parseInt(parts[i]).toString(16);
				   if (parts[i].length == 1) parts[i] = '0' + parts[i];
				}
				var fadeFrom = parts.join('');
				
				//start the fade animation
				var jFadeObj = 
				$(".pp_overlay").jFade({
					property: 'background',
					start: fadeFrom,
					end: fadeTo,
					steps: 25,
					duration: 20
				}); 
				
				//Save the animation timer so we can cancel it later
				$(".pp_overlay").data("jFadeTimer", jFadeObj.timer)

		    });
			
			
			// Set my global selectors
			$pp_pic_holder = $('.pp_pic_holder');
			$ppt = $('.ppt');
			
			$('div.pp_overlay').css('height',$(document).height()).bind('click',function(){
				close();
			});

			$pp_pic_holder.css({'opacity': 0}).addClass(settings.theme);
			$('.slideShowTitle').fadeOut(0)//({'opacity': 0});

			$('a.pp_close').bind('click',function(){ close(); return false; });

			$('a.pp_expand').bind('click',function(){				
				$this = $(this);
				
				// Expand the image
				if($this.hasClass('pp_expand')){
					$this.removeClass('pp_expand').addClass('pp_contract');
					doresize = false;
				}else{
					$this.removeClass('pp_contract').addClass('pp_expand');
					doresize = true;
				};
			
				_hideContent();
				
				$pp_pic_holder.find('.pp_hoverContainer, #pp_full_res, .pp_details, .pp_top.pp_right').fadeOut(settings.animationSpeed,function(){
					_preload();
				});
		
				return false;	
			});
		
			$pp_pic_holder.find('.pp_previous, .pp_arrow_previous').bind('click',function(){
				changePicture('previous');
				return false;
			});
		
			$pp_pic_holder.find('.pp_next, .pp_arrow_next').bind('click',function(){
	
				changePicture('next');
				return false;
			});

			$pp_pic_holder.find('.pp_hoverContainer').css({
				'margin-left': settings.padding/2
			});
		
		
			$pp_pic_holder.bind('click',function(e){
				var x = e.pageX - this.offsetLeft;
				if(x < $(this).width()/2)
					changePicture('previous');			
				else
					changePicture('next');
			});
			
			// If it's not a set, hide the links
			if(!isSet) {
				$pp_pic_holder.find('.pp_hoverContainer,.pp_nav').hide();
			};


			// To fix the bug with IE select boxes
			if($.browser.msie && $.browser.version == 6){
				$('body').addClass('ie6');
				$('select').css('visibility','hidden');
			};

			// Then fade it in
			$('div.pp_overlay').css('opacity',0).fadeTo(settings.animationSpeed,settings.opacity, function(){
				$pp_pic_holder.css('opacity',0).fadeIn(settings.animationSpeed,function(){
					$pp_pic_holder.attr('style','left:'+$pp_pic_holder.css('left')+';top:'+$pp_pic_holder.css('top')+';');
					_preload();
				});
			});
		};
	};
	
	function grab_param(name,url){
	  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
	  var regexS = "[\\?&]"+name+"=([^&#]*)";
	  var regex = new RegExp( regexS );
	  var results = regex.exec( url );
	  if( results == null )
	    return "";
	  else
	    return results[1];
	}
})(jQuery);