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;
											  }
											  });



jQuery(document).ready(function(){
	 jQuery('iframe').each(function(){
	 	 jQuery(this).width(jQuery(this).parent().width());
	 });
	 jQuery(window).resize(function() {
		 jQuery('iframe').each(function(){
			 jQuery(this).width(jQuery(this).parent().width());
		 });
	 });
	 
	 jQuery('.placeholder').each(function(){
	 	this.value = this.title;
	 });
 });

