$(function(){
    
    var selectString = 'Please select a project above to view more photos.';

    $('#pnav-h').empty().append(selectString);
    $('#pnav a').hover(function(){
       if($(this).attr('title')) $('#pnav-h').empty().append($(this).attr('title'));
    	},
    	function(){
        $('#pnav-h').empty().append(selectString);
    });
	$('#tnails a').click(function(){
		$('#image img').attr('src', $(this).attr('href'));
		return false;
	});
	$('#nav li').hover(function(){
		$(this).addClass('hover');
	},
	function(){
		$(this).removeClass('hover')
	})
});
