$(document).ready(function() {

    //REMOVES JAVASCRIPT FIX CLASSES
    $('#portfolio-content').removeClass("js-off-overflow");
    $('.portfolio-thumbs').removeClass("js-off-position");


    // CONTACT FORM		
    $('#contact_form').ajaxForm({
        target: '#message-outcome',
        beforeSubmit: function() {
            $('#message-outcome').addClass('visible');
        },
        success: function() {
            $('#message-outcome').show();
        }
    });
		
    $('.textbox, #message, #comment').focus(function (){
        $(this).css({
            borderColor : '#d1d1d1'
        });
        $(this).blur(function (){
            $(this).css({
                borderColor : '#e1e1e1'
            });
        });
    });


});
