﻿$(document).ready(function () {
    $(".numeric").numeric(",");

    $(".stripeMe tr").mouseover(function () {
        $(this).addClass("over");
    }).mouseout(function () {
        $(this).removeClass("over");
    });
    $(".stripeMe tr:even").addClass("alt");

    $("#contact").click(function () {       
        if ($(this).css("right") == '0px') {
            $(this).animate({ "right": "-=160px" }, "slow");
        }
        else {
            $(this).animate({ "right": "+=160px" }, "slow");
        }
    });

    $("#contactmelink").fancybox({
        'width': 640,
        'height': 620,
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });

});



