

$(function(){

	var panelContainer = $('#past-work-panel');
	
	oTitle = $('#past-work-panel h4').find('a').find('strong').html();
	oDate = $('#past-work-panel h4').find('a').find('span').html();
	
	$('#past-work-panel').find('li').each(function(){

	
		$(this).bind (
			"mouseover",
			function(){
						
		aTitle = $(this).find('a').attr('title');
		aDate = $(this).find('a').find('img').attr('alt');
		aLink = $(this).find('a').attr('href');
		
				$('#past-work-panel h4').find('a').find('strong').html(aTitle);
				$('#past-work-panel h4').find('a').find('span').html(aDate);
			});
			
		$(this).bind (
			"mouseout",
			function(){
			
				$('#past-work-panel h4').find('a').find('strong').html(oTitle);
				$('#past-work-panel h4').find('a').find('span').html(oDate);
			});
	});
	
	
	$('.ngg-galleryoverview').each(function(){
		$(this).find('.ngg-gallery-thumbnail-box:first').show();
		
		
		
	});
	$('.ngg-galleryoverview:odd').addClass('right');

	$(".popup").fancybox({ 'overlayShow': true, 'overlayOpacity' : 0.85 }); 

});