// Dom ready for action
$(function () {
	// Tell your friends about awesomeness
	$("#tell_friend").toggle(function () {
		// position element correctly
		// top
		$("#tell-a-friend").css("top", $("#tell_friend").offset().top - 243);
		// left
		$("#tell-a-friend").css("left", $("#tell_friend").offset().left - $("#tell-a-friend").outerWidth() / 2 + 50);
		// show it
		$("#tell-a-friend").css("visibility", "visible");
	}, function () {
		// hide it
		$("#tell-a-friend").css("visibility", "hidden");
	});
	
	$('#tell-a-friend-form').submit( function() {
		if($('#friend_email').val() == '' || $('#friend_email').val() == null){
			alert("Please ensure you add your friend's email address");
			return false;
		}
	});
	
	if($("div.tagline").text().replace(" ", "").length < 2) $("div.tagline").hide();
})