$(document).ready(function(){

  /* HOVER-EFFECTS */
  $(".imgHover").hover(
    function() {
      $(this).toggleClass('hover');
      return false;
    },

    function() {
      $(this).toggleClass('hover');
      return false;
    }
  );

  /* RIVIEN VÄRITYS */
  $( function(){
    $(".colorRows").children(":even").addClass("dark");
    $(".colorRows").children(":odd").addClass("light");
  });

  /* FORMIN KENTTIEN AUTOMAAGINEN TYHJENNYS */
  $(".inputValidate :input").focus( function() {
    if($(this).attr('value') == $(this).attr('title')){
      $(this).attr('value', '');
    }
  });
  /* ...JA TÄYDENNYS*/
  $(".inputValidate :input").blur( function() {
    if($(this).attr('value') == ''){
      $(this).attr('value', $(this).attr('title'));
    }
  });

  /* LOMAKKEEN TARKASTUS */
  $(".inputValidate .required").blur(function() {
    $(this).validate.init(this, $(this).attr('validate'));
  });

  $(".inputValidate").submit( function () {
      var valid = true;
      //validoidaan kaikki required kentät
      $(this).children('.required').each(function(i){
          if( !$(this).validate.init( this, $(this).attr('validate') ) ){
            valid = false;
          }
      });
      return valid;
   });



  /* POPUP */
  $(function(){
    var profiles =
    {

    player:
    {
      height:80,
      width:250,
      toolbar:0,
      scrollbars:0,
      status:0,
      resizeable:1,
      createnew:0
    }
    };

    $(".pop").popupwindow(profiles);
  });

  /* UUTISTEN SIVUTUS */
  $("#news ul").idTabs();

  /* KUVAGALLERIA */
  var photo = $("#gallery").children().children();
  photo.attr('rel', 'shadowbox[Gallery]');

});