// custom-house-cleaning-service javascript

window.addEvent('domready', function() {
  var customService = new CustomService();
});


var CustomService = new Class({

  initialize: function() {
  	$('ctl_basic').addEvent('click', function(){ this.populate('basic'); return false; }.bind(this));
  	$('ctl_spring').addEvent('click', function(){ this.populate('spring'); return false; }.bind(this));
  	$('ctl_moving').addEvent('click', function(){ this.populate('moving'); return false; }.bind(this));
  	$('ctl_none').addEvent('click', function(){ this.populate('none'); return false; }.bind(this));
  	
  	$$('.booking_link').each(function(el) {
      el.addEvent('click', function() { this.book_custom(); return false; }.bind(this));
    }.bind(this));
  },
  
  populate: function(pack) {

    // cleaning tasks: kitchen
  
    $('cooktop').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('splashback').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('kitchen_benchtops').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('kitchen_sinktaps').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('appliance_exteriors').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('microwave').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('oven').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('rangehood').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('kitchen_cupboard_exteriors').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('kitchen_cupboard_interiors').checked = (pack == 'moving') ? true : false;

    // cleaning tasks : bathroom
  
    $('bath').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('shower').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('counter_tops').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('bathroom_sinktaps').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('toilet').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('bathroom_mirrors').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;  
    $('tiles').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('bathroom_cupboard_exteriors').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('bathroom_cupboard_interiors').checked = (pack == 'moving') ? true : false;
  
    // cleaning tasks: all rooms
  
    $('vacuum_carpets').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('mop_floors').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('dust_surfaces').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('rubbish').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('tidy').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;
    $('air_freshen').checked = (pack == 'basic' || pack == 'spring' || pack == 'moving') ? true : false;  
    $('windows').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('mirrors').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('walls').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('doors').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('switches').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('boards_sills').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('blinds').checked = (pack == 'spring' || pack == 'moving') ? true : false;  
    $('light_fittings').checked = (pack == 'spring' || pack == 'moving') ? true : false;
    $('cobwebs').checked = (pack == 'spring' || pack == 'moving') ? true : false;  
    $('polish_furniture').checked = (pack == 'spring') ? true : false;
    $('wall_hangings').checked = (pack == 'spring') ? true : false;
    $('vacuum_furnishings').checked = (pack == 'spring') ? true : false;
    $('vacuum_beds').checked = (pack == 'spring') ? true : false;

    // cleaning tasks: optional

    $('bed_linen').checked = false;
    $('laundry').checked = false;
    $('dish_washing').checked = false;
    $('ironing').checked = false;
    $('balcony_railing').checked = false;
    $('fridge').checked = false;
    $('organise_cupboards').checked = false;
    $('steam_cleaning').checked = false;
    $('garden_furniture').checked = false;
    $('water_plants').checked = false;
    
    return false;
    
  },
  
  book_custom: function() {
    var checkbox = $$('table.tbl_cleaning_package input[type=checkbox]'); var string = '';
    checkbox.each(function(input) {
      if(input.checked) string += input.className + ': ' + input.value + '\n';
    });
    window.location='/book-online?type=booking&package=custom&requirements=' + encodeURIComponent(string);
  }
  
});