$(document).ready(function(){

    // contact form focus handlers
    $('.contact .content input, .contact .content textarea').focus(function(){
        if ($(this).val().toLowerCase() == $(this).attr('class').toLowerCase()) {
            $(this).val('');
        }
    });
    $('.contact .content input, .contact .content textarea').blur(function(){
        if ($(this).val() == '') {
            $(this).val($(this).attr('class').toUpperCase());
        }
    });
    
    
    // blog
    $('.blog .content .readmore').click(function(){
        $(this).parent().children('.full').slideToggle('fast');
        return false;
    })
});
