$(document).ready(function(e) {
    $(window).scroll(function() {
        $('#left-inner').css('top', $(this).scrollTop()+'px');
    });
    $('#logo').click(function() {
        window.location = $(this).find('a').first().attr('href');
    });

    $('#contact-form').change(function() {
        $('.clear-form').removeAttr('disabled').removeClass('disabled');
    });

    $('.clear-form').click(function() {
        $(this).parent().parent().find(':input', 'textarea')
            .not(':button, :submit, :reset, :hidden')
            .val('')
            .removeAttr('checked')
            .removeAttr('selected');
        $('.clear-form').attr('disabled', 'disabled').addClass('disabled');
    });
});


