//====================================================================================================================

	$(document).ready(function(){
		initNav();
		initGallery();
	});

//====================================================================================================================

	function initNav() {

		$('.nav > ul > li > span').parent().mouseenter(function(){
			$(this).children('span').addClass('active');
			$(this).children('ul').slideDown(300);
		});

		$('.nav > ul > li > span').parent().mouseleave(function(){
			$(this).children('span').removeClass('active');
			$(this).children('ul').slideUp(300);
		});
		
	}
	
//====================================================================================================================

	function initGallery() {
		$('.thumbnail').mouseenter(function(){
			$('#photo').attr('src', $(this).attr('src').replace('thumbphoto','photo'));
		});
	}

//====================================================================================================================


