var RecaptchaOptions = {
   theme : 'white'
};

$(document).ready(function() {
    $("#contact").css("position", "absolute");
    $(document).pngFix();
});

$(window).scroll(function() {
    $("#contact").css("top", $(window).scrollTop() + "px");
});
$(window).resize(function() {
    $("#contact").css("top", $(window).scrollTop() + "px");
});
