/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
    $("#page-content-moreinfo").css({
        "top" : $("#page").offset().top,
        "left" : $("#page-header").offset().left+10
    });
    $(window).resize(function(){
        $("#page-content-moreinfo").css({
            "top" : $("#page").offset().top,
            "left" : $("#page-header").offset().left+10
        });
    });

    $("#page-content-moreinfo-tab").click(function(){
        $(this).css("display", "none");
        if($(this).attr("class")=="moreinfotabopen"){
            $(".poi").animate({height:"toggle"}, "100");
            $(this).attr("class","moreinfotabclose");
        }
        else{
            $(".poi").animate({height:"toggle"}, "100");
            $(this).attr("class","moreinfotabopen");
        }
        $(this).css("display", "block");
    });

    $("#cvv_help_a").click(function(){
    	$("#cvvinfo").toggle();
    });

    $("input[name='otherAmount']").focusin(function(){
       $("input[value='other'][name='amount']").attr("checked","checked");
    }).keyup(function(){
       $(this).val($(this).val().replace(/[^\d.]+/,""));
    });
});


