	
	$(function(){
		
		/* Menu Males */
		$('div.males').mouseover(function(){
			$(this).stop(); $(this).animate({width: '110px'}, '10');
		});
		$('div.males').mouseout(function(){
			$(this).stop();	$(this).animate({width: '36px'}, '10');
		});
		
		/* Menu Females */
		$('div.females').mouseover(function(){
			$(this).stop(); $(this).animate({width: '130px'}, '10');
		});
		$('div.females').mouseout(function(){
			$(this).stop();	$(this).animate({width: '36px'}, '10');
		});
		
		/* Menu Nursery */
		$('div.nursery').mouseover(function(){
			$(this).stop(); $(this).animate({width: '122px'}, '10');
		});
		$('div.nursery').mouseout(function(){
			$(this).stop();	$(this).animate({width: '36px'}, '10');
		});
		
		/* Menu Kittens */
		$('div.kittens').mouseover(function(){
			$(this).stop(); $(this).animate({width: '126px'}, '10');
		});
		$('div.kittens').mouseout(function(){
			$(this).stop();	$(this).animate({width: '36px'}, '10');
		});
		
		/* Menu Gallery */
		$('div.gallery').mouseover(function(){
			$(this).stop(); $(this).animate({width: '128'}, '10');
		});
		$('div.gallery').mouseout(function(){
			$(this).stop();	$(this).animate({width: '36px'}, '10');
		});
		
		/* Menu Contact */
		$('div.contact').mouseover(function(){
			$(this).stop(); $(this).animate({width: '126px'}, '10');
		});
		$('div.contact').mouseout(function(){
			$(this).stop();	$(this).animate({width: '36px'}, '10');
		});
		
		/* Bottom back to top */
		$('div.contact').mouseover(function(){
			$(this).stop(); $(this).animate({width: '188px'}, '10');
		});
		$('div.contact').mouseout(function(){
			$(this).stop();	$(this).animate({width: '36px'}, '10');
		});
	
	});
