$(function() {
	$("#homepageTeaser").tabs({
			event: 'mouseover'
	});
//$("#orderForm").validate();
$("#contactForm").validate();

$("#orderForm").validate({
  rules: {
    fldIMEI: {
      required: true,
      minlength: 15,
	  maxlength: 15,
	  digits: true
    }
  }
});


$('div.demo-show:eq(0)> div').hide();
$('#showfirst').show();
$('div.demo-show:eq(0)> h3').click(function() {
$(this).next().slideToggle('fast');
  });
});

