$(document).ready(function(){
//BEGIN

//Twitter Feed
/*
    $(".tweet").tweet({
        username: "ajwoodworth",
        join_text: "auto",
        count: 1,
        //query: "ajwoodworth",
        loading_text: "Loading tweets..."
    });

*/

 $(".tweet").tweet({
            username: "ajwoodworth",
            join_text: "auto",
            count: 1,
            loading_text: "loading tweets..."
        });
//END
});





// Auto Field-clear (non-jquery)

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 

