$(document).ready(function() {
 //$('div.view').hide();
$('div.slide').next("div").hide();
 $('div.slide').toggle(
	 function() {
		 $(this).next('div').fadeIn('slow');
		// return false;
	 },
	 function() {
		 $(this).next('div').fadeOut('fast');
		 //return false;
	});
});
