﻿/// <reference path="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.1-vsdoc.js" />


/*/  /  /  /  /  /  /  /  /  /  /  /  /  /  /  /  / */
/*  setDefaultButton()   /  /  /  /  /  /  /  /  / */
/* /  /  /  /  /  /  /  /  /  /  /  /  /  /  /  / */
function setDefaultButton(scopeSelector, submitbuttonSelector) {
    $(document).ready(function() {
        $(scopeSelector).find('input[type=text]').bind('keydown keypress', function(event) {
            if (event.keyCode == 13) {
                event.preventDefault();
                $(submitbuttonSelector).click();
                return false;
            }
        });
    });
}



/*/  /  /  /  /  /  /  /  /  /  /  /  /  /  /  /  / */
/*  FLASHING MESSAGES    /  /  /  /  /  /  /  /  / */
/* /  /  /  /  /  /  /  /  /  /  /  /  /  /  /  / */
$(document).ready(function() {
    $("div span.success, div span.error").parent().each(function() {
        $(this).effect("pulsate", { times: 3 }, 1000);
    });
});



/*/  /  /  /  /  /  /  /  /  /  /  /  /  /  /  /  / */
/*  DEV   /  /  /  /  /  /  /  /  /  /  /  /  /  / */
/* /  /  /  /  /  /  /  /  /  /  /  /  /  /  /  / */
$(document).ready(function() {
    if (document.location.toString().indexOf("kunder1") + document.location.toString().indexOf("localhost") > 0) {
        $(".dev").removeClass("dev");
    }
});

