
$(function(){

	$('#sidebar-testimonials h4').hide();
	$('#sidebar-testimonials h4:random').show();

});
$(function(){

	$('.portfolio-page #sidenav .current_page_item').hide().find('a').insertBefore('#sidenav').show('slow').wrap('<h3 id="gallery-name"></h3>');
	
	$('.ngg-galleryoverview').insertAfter('#gallery-name').addClass('clearfix');
	
	$('.ngg-navigation').prepend('<span class="view-more">View more photos...</span>');
	
	$('.portfolio-page #main').prepend('<div id="#photo-container"><p id="photo"><img src="" alt="" /></p><p id="photo-description"></p></div>');

	
	function swapIMG(tarIMG){
		var tSrc = $(tarIMG).attr('href');
		var tDesc = $(tarIMG).attr('title');
		$('#photo img').hide();
		$('#photo img').attr({src: tSrc}).show();
		$('#photo-description').hide().text(tDesc).show();
	};

	document.onLoad = swapIMG($('.gallery_image:first'));
	
	$('.gallery_image').click(function(){
		swapIMG(this);
		return false;
	});
	
});