/* Author: Kula Partners (Silas Bondrup-Nielsen)

*/

				 
jQuery('textarea.placeholder, input.placeholder:text').focusin(function(){
											  if(this.title == this.value){
												  this.value = '';
											  }
											  });
jQuery('textarea.placeholder, input.placeholder:text').focusout(function(){
											  if(this.value == ''){
												  this.value = this.title;
											  }
											  });












