$(document).ready(function ()
{
	// ie6 png fix
	$('.row-2 .col-2').pngFix();

	// Nav Fix
	$('#nav li a').hover(function ()
	{
		$(this).addClass('hover'); 
	}, function ()
	{
		$(this).removeClass('hover');
	});
	
	// PDF Popups
	$("a[href*=.pdf]").click(function(){
		window.open(this.href, 'pdf', 'width=800,height=600,scrollbars=yes,top=100,left=100');
		return false;
	});
	
	// Gallery rel attributes from class
	
	$('.gallery a').each(function ()
	{
		var relTag = $(this).find('img').attr('title');
		$(this).attr('rel', 'lightbox['+relTag+']');
	});
	
	$('.gallery a').lightBox();
});



