$('document').ready(function(){
	bind_team_hover("");
});	

function bind_team_hover(id) {
	/* team and staff tagging */
	$(id + " span.image.team").mouseover(function(){
		$(this).children().toggleClass("show");
	}).mouseout(function(){
	  	$(this).children().toggleClass("show");
	});
	
	$(id + " span.left-img.team").mouseover(function(){
		$(this).children().toggleClass("show");
	}).mouseout(function(){
	  	$(this).children().toggleClass("show");
	});
	
	$(id + " a.team").mouseover(function(){
	  	$(this).children().toggleClass("show");
	}).mouseout(function(){
	  	$(this).children().toggleClass("show");
	});
	
	$(id + " ul.more-list li").mouseover(function(){
	  	$(this).children().toggleClass("show");
	}).mouseout(function(){
	  	$(this).children().toggleClass("show");
	});
	
	$(id + " .stream-elements-box li span.img.team").mouseover(function(){
	  	$(this).children().toggleClass("show");
	}).mouseout(function(){
	  	$(this).children().toggleClass("show");
	});
	
	$(id + " .discussion span.pic.team").mouseover(function(){
	  	$(this).children().toggleClass("show");
	}).mouseout(function(){
	  	$(this).children().toggleClass("show");
	});
}



