/*******************************************************************************
On page load.
*******************************************************************************/

$(function()
{		
	// LightBox		
	var imgPath = '/images/layout/lightbox/';
	$('.lightBox a').lightBox({
		imageLoading: imgPath + 'loading.gif',
		imageBtnClose: imgPath + 'close.gif',
		imageBtnPrev: imgPath + 'prev.gif',
		imageBtnNext: imgPath + 'next.gif',
		imageBlank: imgPath + 'blank.gif',
		txtImage: '',
		txtOf: ' / '
	});	
		
	// IE 6 specific...
	if ($.browser.msie && parseInt($.browser.version) <= 7)
	{		
		$('[src$=.png], div').ifixpng();
		$('.sectionNav').css({float: 'none'});
	}
		
	$('.lightBox a.photo').each(function()
	{
		var $this = $(this);
		var $img = $('img', this);				
		$img.replaceWith($('<div />').css({			
			backgroundImage: 'url('+ $img.attr('src') +')'
		}));		
	});
});
