jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
 return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);
};
$(document).ready(function(){
$(".msg_body1").hide('slow');
//$("#"+aux_id).html('[+]');
$(".msg_head1").click(function()
{   
		var aux_id=$(this).attr('id');
		var aux_id1=$(this).attr('title');
		if($("#"+aux_id).attr('title')=='More')
			{	
				$(this).attr('title','Less');
				$("#"+aux_id).html('[-]');
				$(this).next(".msg_body1").slideFadeToggle('slow');
			}
			else
			{
			$(this).attr('title','More');
			$("#"+aux_id).html('[+]');
			$(this).next(".msg_body1").hide('slow');
			}
			
	});
});

/*<script>
	$('a.sub_category_content').click(function() {
		var aux_id=$(this).attr('id');
		var aux_div=$("#a"+aux_id);
		if($(this).attr('title')=='Click to expand view'){
			$(this).attr('title','Click to contract view');
			$("#a"+aux_id).show('slow');
		}
		else{
			$("#a"+aux_id).hide('slow');
			$(this).attr('title','Click to expand view');
			$("#title"+aux_id).attr('class','table_title');
		}
	return false;
	});

</script>
*/