//Table Row Alternation
$(function(){
	$('div.wrapper, #list_a li').alternate();
	$('#table_a tbody tr').alternate({hover:true},function(){$(this).toggleClass('selected')});
});

$(function(){
	$('div.wrapper, #list_a li').alternate();
	$('#table_b tbody tr').alternate({hover:true},function(){$(this).toggleClass('selected')});
});

//ToolTip
$(function(){
	$(".toolTip").tipTip({maxWidth: "auto", edgeOffset: 10});
});



//Email Obfuscation
//$(".replaceAt").replaceWith("@"); $(".obfuscate").each(function () { $(this).attr("href", "mailto:"+$(this).text()); });

