// Call the GalleryView   -- #photos
	$(document).ready(function(){		
		$('#photos').galleryView({
			panel_width: 800,
			panel_height: 390,
			transition_speed: 1500,
			transition_interval: 5000,
			nav_theme: 'custom',
			show_filmstrip: false,
			pause_on_hover: true
		});
	});

function setDocIcons(){
		// $("#libList p a[href$=png]").css("border", "3px solid red");
		
		$("#libList p a[href$=pdf]").addClass("pdf");
	
		$("#libList p a[href$=png]").addClass("png");
	
		$("#libList p a[href$=doc]").addClass("doc");
		
		$("#libList p a:not([@href*=http://www.webdesignerwall.com])").not("[href^=#]")
			.addClass("external")
			.attr({ target: "_blank" });
	}
/*
// qTip plugin call
// Create the tooltips only on document load
// Ref: http://craigsworks.com/projects/qtip/docs/
$(document).ready(function() 
{
   $('a#enqButton').qtip({
               content: false, // Set the tooltip content to the current corner
               position: {
                  corner: {
                     tooltip: 'rightMiddle', // Use the corner...
                     target: 'leftMiddle' // ...and opposite corner
                  },
                  adjust: {
                  	x: 0,
                  	y: -7
                  }
               },
               style: {
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'light' // Style it according to the preset 'cream' style
               }
            });

   $('a.thumbLink').qtip({
               content: false, // Set the tooltip content to the current corner of project thumbnails
               position: {
                  corner: {
                     tooltip: 'bottomMiddle', // Use the corner...
                     target: 'bottomMiddle' // ...and opposite corner
                  },
                  adjust: {
                  	x: -10,     // -10
                  	y: -135    // -118
                  }
               },
               style: {
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'light' // Style it according to the preset 'cream' style
               }
            });

});
*/
