// Clear input text and darken color on Sign Up form
function clearAndColor(el) {
	if (el.defaultValue==el.value) el.value = ""
	if (el.style) el.style.color = "#111111"
}

$(document).ready(function() {

	// language tooltips
	
	$(".tooltip a").hover(function() {
		$(this).next(".tooltipCopy").animate({opacity: "show", top: "28"}, 200);
	},function(){
		$(this).next(".tooltipCopy").animate({opacity: "hide", top: "18"}, 200);
	});

}); // end document ready