// jQuery.labelify - Display in-textbox hints
//source: http://www.kryogenix.org/code/browser/labelify/
$(document).ready(function(){
  $(":text").labelify();
});


// This allows IE to submit forms when hitting enter
// source: http://www.thefutureoftheweb.com/blog/submit-a-form-in-ie-with-enter
$(function(){
    $('input').keydown(function(e){
        if (e.keyCode == 13) {
            $(this).parents('form').submit();
            return false;
        }
    });
});

