$(document).ready(function(){
	var id;
	var elem;
	var shownID = 1;
	var boxtype;
	$(".hvr").mouseover(function() {
		if ( $(this).attr('id').indexOf('team') != -1 ) { boxtype = 'team' } else { boxtype = 'box' };
		id = $(this).attr('id').replace('reasonbox','').replace('testbox','').replace('teambox','');
		//elem = $(this).attr('id').replace('reasonbox','');
		$("#reason" + shownID).hide();
		$("#reason" + id).show();
		shownID = id;
		$(this).addClass(boxtype + 'dark' + id).removeClass(boxtype + 'light' + id);
	});
	$(".hvr").mouseout(function() {
		if ( $(this).attr('id').indexOf('team') != -1 ) { boxtype = 'team' } else { boxtype = 'box' };
		id = $(this).attr('id').replace('reasonbox','').replace('testbox','').replace('teambox','');
		$(this).addClass(boxtype + 'light' + id).removeClass(boxtype + 'dark' + id);
	});
});
