$(document).ready(function() {
	$('nav ul li a').hover(function(ev) {
		$('#nav-desc p').hide().html($(this).attr('rel')).fadeIn(100);
	},
	function(ev) {
		$('#nav-desc p').hide().html($('nav ul li:last-child a').attr('rel')).fadeIn(100);
	});
	
	$('#nav-desc p').html($('nav ul li:last-child a').attr('rel'));
	
	$('.gallery').hover(function(e) {
			$(this).children('.slideRight').show();
		},
		function(e) {
			$(this).children('.slideRight').hide();
		}
	);
});
