$(document).ready(function() {
  $('#slider').bxSlider({
    displaySlideQty: 3,
    moveSlideQty: 1
  });

  $('input[type="text"]').each(function() {
  	$(this).val($(this).attr('placeholder'));
  	$(this).focus(function() {
  	  $(this).val('');
  	});
  	$(this).blur(function() {
  	  if($(this).val() == "") {
  	    $(this).val($(this).attr('placeholder'));
  	  }
  	});
  });  
  
  $('textarea').each(function() {
  	$(this).focus(function() {
      $(this).html('');
  	});
  	$(this).blur(function() {
  	  if($(this).html() == "") {
  	  	$(this).html('Project Details');
  	  }
  	});
  });
  
  $('#create-pdf-indesign, #create-pdf-illustrator, #create-pdf-quark').colorbox();
  
  $('a[href^="http://"]').attr('target','_blank');
});	
