
$(document).ready(function() {

    $(function() {
        /* greybox */
        $("*.greybox").click(function() {
            var t = "Picture"; //this.title || $(this).text() || this.href;
            GB_show(t, this.href, 400, 400);
            return false;
        });

        $('a.lightsGal').zoomimage();

    });
    $(".gallery a[rel^='prettyPhoto']").prettyPhoto({ theme: 'facebook' });

    $(".resultsTable a.checkapplication").prettyPhoto({ theme: 'facebook' });

    $(".typebutton").keypress(function(e) {

        var code = (e.keyCode ? e.keyCode : e.which);
        if (code == 13) { //Enter keycode
            
            ShowResults(2);
            return false;
        }
    });


});












