$(document).ready(function(){
	$('.in-put-label').each(function(){
		var labelText = $(this).find('strong').html();
		var tarName = $(this).attr("for");
		var tarInput = $("input#" + tarName);
		$(this).find('strong').hide();
		$(tarInput).val(labelText);
		$(tarInput).click(function () { 
			if($(this).val() == labelText){ $(this).val(''); }
	    });
	    $(tarInput).blur(function () { 
			if($(this).val() == ""){ $(this).val(labelText); }
	    }); 
	});
	$('ul.four-column').equalHeights();
	$('input.single[type=text]').wrap("<strong></strong>");
	
	$("#donate-confirm").click(function () {
		$(this).toggleClass("checked");
		$("#paypal-link").toggle();
		return false;
	});
  
});

$(document).ready(function(){
	$("input[type=checkbox]").prettyCheckboxes();
});

$(function(){

	if (window.location.hash == "#endorse") {
		$("#endorse-button").addClass("current");
	};

});