$(function(){
	
	//cross-browser 100% height	
	$.getDocHeight = function(){
	    return Math.max(
	        $(document).height(),
	        $(window).height(),
	        /* For opera: */
	        document.documentElement.clientHeight
	    );
	};

	//make yellow background 100% height
	$('#wrapper').height($.getDocHeight());
	
	//adjust when browser is re-sized
	$(window).resize(function() { $('#wrapper').height($.getDocHeight()); });
	
	
	 
    $("#mce-EMAIL")
        .focus(function() {
            if ($(this).val() == "your e-mail address") {
                $(this).val("");
            } 
        })
        .blur(function(){
            if ($(this).val() == "") {
                $(this).val("your e-mail address");
            } 
        })
        .keyup(function() {
            $("#mce-EMAIL").val($(this).val());
        });

	

});


