$(document).ready(function() {
  
  // Remove input value
  $('input[type="text"],textarea').addClass("idleField");
         $('input[type="text"],textarea').focus(function() {
           $(this).removeClass("idleField").addClass("focusField");
          if (this.value == this.defaultValue){
            this.value = '';
    }
    if(this.value != this.defaultValue){
         this.select();
       }
      });
      $('input[type="text"],textarea').blur(function() {
        $(this).removeClass("focusField").addClass("idleField");
          if ($.trim(this.value) == ''){
        this.value = (this.defaultValue ? this.defaultValue : '');
    }
    });
  
  // Featured
  $('#slider #slides')
  .cycle({  
      fx:       'fade',
      speed:    'slow',
      timeout:   8000,
      delay:     2000,
      pager:    '#dots'
  });
  
  // Current Dev image
  $('#development_stripe .image ul')
  .cycle({  
    fx:       'fade',
      speed:    'slow',
      timeout:   6000,
    delay:     1000
  });
  
  // Gallery
  $("#gallery a").fancybox();

});


// CAROUSEL
jQuery(document).ready(function() {
  
  // CAROUSEL
    jQuery('#carousel ul').jcarousel();


});


$(function(){

});

