function expandElement(){

jQuery('.showMore').toggle(function(){
	
	var obj = jQuery(this).attr('id')+'Content';
	
	jQuery('#'+obj).show('slow');
	jQuery(this).html("Show less <<");
	
},function(){
	
	var obj = jQuery(this).attr('id')+'Content';
	
	jQuery('#'+obj).hide('slow');
	jQuery(this).html("Show more >>");
	
});		

}




