jQuery(document).ready(function(){
	jQuery(".toggleit").click(function(){
		jQuery("#panel").slideToggle("fast");
	});
});

