$(document).ready(function(){
/*zakazy*/
$('#domain-yes').click(function(){
  if($(this).is(':checked')) {
    $('#domain').fadeIn("fast");
  } else {
    $('#domain').fadeOut("fast");
  }
});

$('#hosting-yes').click(function(){
  if($(this).is(':checked')) {
    $('#hosting').fadeIn("fast");
  } else {
    $('#hosting').fadeOut("fast");
  }
});

$('#catalog-yes').click(function(){
  if($(this).is(':checked')) {
    $('#catalog').fadeIn("fast");
  } else {
    $('#catalog').fadeOut("fast");
  }
});

$('#script-yes').click(function(){
  if($(this).is(':checked')) {
    $('#script').fadeIn("fast");
  } else {
    $('#script').fadeOut("fast");
  }
});

$('#other-yes').click(function(){
  if($(this).is(':checked')) {
    $('#other').slideDown("fast");
  } else {
    $('#other').slideUp("fast");
  }
});

});
