$(document).ready(function(){
	$("#subtotaal").hide();
    $(".aantal").blur(function() {
        var aantal = $(".aantal").val().length; 
        if (aantal > 0) 
            $("#frmOrder").submit();
    });
	$(function() {  // execute when document ready
	  $("input").keyup(function(e) {
	    if (e.keyCode==13) { // enter 
	      var form = $(this).parents("form").get(0); // first <form> tag that is a parent.
	      if (form) form.submit();
	      return e.preventDefault(); // stop it from activating in other browsers.
	    }
	  });
	});
});
$(function() {
	$('a[@rel*=lightbox]').lightBox();
});
