$(document).ready(
	function()
	{	
		$('#menu > li > a').hover(	function() 
								{
									$(this).parent().addClass('hover');
									$(this).parent('li').find('span').show();
								},
								function() 
								{
									$(this).parent().removeClass('hover');
									$(this).parent('li').find('span').hide();
								});
		$('.photo ul').each( function() 
								{
									$(this).find('li').hide();
									$(this).find('li').filter(':first').show();
								});
		

});
