$(document).ready(function(){
    $('#fieldname').focus();
    $('#fieldname').css('border','1px solid #BBBBBB');
});

$(window).load(function () {
    $('.twtr-ft').remove();
});

$(function(){
    $('.button_delete').click(function () {
        $('.textfield').val('');
        $('.textarea').val('');
        $('#fieldname').focus();
        $('.lenyaInfoBox').remove();
    });

    $('.button_cancel').click(function() {
        $('#fieldname').focus();
    });

    $('.textfield, #contactmessage').focusin(function() {
         $(this).css('border','1px solid #BBBBBB');
    });

    $('.textfield, #contactmessage').blur(function() {
         $(this).css('border','1px solid blue');
         $(this).css('border','1px solid #EAEAEA');
    });

    $('.qr').mouseenter(function() {
        $('#img_code').css('visibility', 'visible');
        $('#img_code').fadeIn(1000);
    });

    $('.qr').mouseout(function() {
        $('#img_code').fadeOut(1000);
    });
});
