$(document).ready(function(){
  $( 'li.detail' ).hide();
  $( 'div.sub' ).hide();

  $("select#umsch_druck").bind("change", function(){

    switch (this.selectedIndex) {
	  case 0:
	    $( 'li.detail' ).hide();
	    break;
	  case 1:
	    $( 'li.detail' ).show();
	    break;
	}

	return false;
  });

  $("select#papiersorte").bind("change", function(){

    switch (this.selectedIndex) {
	  case 2:
	    $( 'div#anderepapiersorte' ).show();
	    break;
	  default:
	    $( 'div#anderepapiersorte' ).hide();
	    break;
	}

	return false;
  });

  $("select#format").bind("change", function(){

    switch (this.selectedIndex) {
	  case 2:
	    $( 'div#anderesformat' ).show();
	    break;
	  default:
	    $( 'div#anderesformat' ).hide();
	    break;
	}

	return false;
  });

  $("select#umsch_mat").bind("change", function(){

    switch (this.selectedIndex) {
	  case 2:
	    $( 'div#anderesmaterial' ).show();
	    break;
	  default:
	    $( 'div#anderesmaterial' ).hide();
	    break;
	}

	return false;
  });

  $("select#umsch_farbig").bind("change", function(){

    switch (this.selectedIndex) {
	  case 2:
	    $( 'div#anderefarbe' ).show();
	    break;
	  default:
	    $( 'div#anderefarbe' ).hide();
	    break;
	}

	return false;
  });

  $("input#absenden").hover(function(){
    this.src = "/assets/sdv/de/img/bas/but_absenden_sel.gif";
  },function(){
    this.src = "/assets/sdv/de/img/bas/but_absenden.gif";
  });

});
