function expandElement(obj){

var careerID

		jQuery('#'+obj).toggle(function(){
			
		//careerID = $(this).attr('id');
		jQuery('#'+obj+'Text').show('slow');
		jQuery('#'+obj).text('hide benefits');

		//alert(jQuery('#'+obj))
		
		}, function(){
			
		jQuery('#'+obj+'Text').hide('slow');
		jQuery('#'+obj).text('show benefits');

});


		jQuery('#'+obj).hover(function(){
			
			jQuery(this).css('color','#FFFFFF');	
			
		}, function(){
			
			jQuery(this).css('color','#414141');	
		});

}
