jQuery.noConflict(); var $ = jQuery;

/********************************************************************************/
//ready
/********************************************************************************/
$(function() {		
	$(".profile_footer_column").each(function(){
		var myID = $(this).attr('id').substring(22,$(this).attr('id').length);
		$(this).find("div:eq(0)").hide();
		$("#profile_position_"+myID).html($(this).find("div:eq(0)").html());
	});
	$(".term_desc div:eq(0)").hide();
	$(".term_date").html($(".term_desc div:eq(0)").html());
	$(".profile_img").corner("40px");
	$("#wrapper").show();
	
});



