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

*/


//this resizes the Youtube video on article pages
jQuery(document).ready(function(){
	//alert(jQuery('.eightcol').width() +'-'+ Math.round(jQuery('.eightcol').width() * 0.625));
	
	jQuery('.video>iframe').attr('width', jQuery('.eightcol').width());
	jQuery('.video>iframe').attr('height', Math.round(jQuery('.eightcol').width() * 0.625));
	
	jQuery(window).resize(function() {
		jQuery('.video>iframe').attr('width', jQuery('.eightcol').width());
		jQuery('.video>iframe').attr('height', jQuery('.eightcol').width() * 0.625);					   
	});
});

				 
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;
											  }
											  });
 
 
/*function placeholdera(){
	if(document.getElementById('searchInput').value == 'search'){
		document.getElementById('searchInput').value = '';
	}else if((document.getElementById('searchInput').value == '')){
		document.getElementById('searchInput').value = 'search';
	}
}*/




















