$(document).ready(function(){

   $('.rent').hide();
   $('.rent h3').remove();
   $('#rent').click(function(e){
      e.preventDefault();
      $('.select').addClass('rent-active');
      $('.buy').hide();
      $('.rent').show();
   });
   $('#buy').click(function(e){
      e.preventDefault();
      $('.select').removeClass('rent-active');
      $('.buy').show();
      $('.rent').hide();
   });
   $('.submit-kohde').click(function(e){
      e.preventDefault();
      var kohde = $('#kohde')[0];
      kohde = kohde.value;
      var newWindow = window.open("http://www.jokakoti.fi/kohde/"+kohde)
      newWindow.focus();
   });
   $('#kohde').focus(function(){ if(this.value == 'Jokakotitunniste'){this.value = '';}});
   var contactForm = ['Nimi','Puhelinnumero','Sähköposti','Viesti'];
   $('#contactform input').focus(function(){ if($.inArray(this.value, contactForm) != -1){this.value = ''}});

   $('#contactform textarea').focus(function(){if($.inArray(this.value, contactForm) != -1){this.value = ''}});
});

