$(function() {

  if($("#pnlGalleryRow ul").exists()) {
      $("#pnlGalleryRow ul").gallerySlider1903({useArrows: true,toggleEvery: 4,arrowsSurround: '.window'});
  }
  
  if($("#ulHeroRotator").exists()) {
    $("#ulHeroRotator").heroSlider1903({type: 'crossfade', showArrows: false});
  }
  
  if($("#ulHeroSlider").exists()) {
    $("#ulHeroSlider").crossFade1903();   
  }  
  
  if($("#ulBigGallery").exists()) {
    $("#ulBigGallery").gallerySlider1903({useArrows: true, showTabs: false, toggleEvery: 1, arrowSharedClass: 'heroArr', arrowBackClass: 'heroBack', arrowNextClass: 'heroNext'});
  }
  
  //$("#pnlGalleryRow ul li a").colorbox({rel:'group1'});
  
  //CONTOUR FORM
  $("input[type=text]").focus(function(srcc) {
    if ($(this).val() == $(this).parent().parent().find('label').html())
    {
      $(this).val("");
    }
  });
  
  $("input[type=text]").blur(function() {
    if ($(this).val() == "")
    {
      $(this).val($(this).parent().parent().find('label').html());
    }
  });
  
  $("textarea").focus(function(srcc) {
    if ($(this).val() == $(this).parent().parent().find('label').html())
    {
      $(this).val("");
    }
  });
  
  $("textarea").blur(function() {
    if ($(this).val() == "")
    {
       $(this).val($(this).parent().parent().find('label').html());
    }
  });
  
  $("textarea").blur();
  $("input[type=text]").blur();     
  
});
