// JavaScript Document
jQuery(document).ready(function(){

	jQuery ('#menu img').each(function(){
		jQuery(this).next('p').hide(500);
		jQuery(this).click(function(){
			jQuery(this).next('p').toggle(1000);
		});

	});

});
