jQuery(document).ready(function(){

	recently_joined_commus_add_hovers();
});

function recently_joined_commus_add_hovers(){
	jQuery("#recently_joined_commus .photos_row dl").hover(function () {
		jQuery("#recently_joined_commus_footer dl *").remove();
		jQuery("#recently_joined_commus_footer dl").append(jQuery(this).html());
	},function(){});

	var common_comms_count = jQuery("#recently_joined_commus .photos_row li").size();
	if (common_comms_count>0){
		jQuery("#recently_joined_commus_footer dl *").remove();
		jQuery("#recently_joined_commus_footer dl").append(jQuery("#recently_joined_commus .photos_row li dl:first").html());
	}
}
