	var titleB;
	var charC;
	var limit = 110;
	
	window.onload = function(){
	
		titleB = document.getElementById('title');
		charC = document.getElementById('charCount');
	
		titleB.onkeyup = function(){ titleKeyPress(); };
		
		
		titleB.onfocus = function(){
			if(titleB.value==titleB.defaultValue){
				titleB.value = '';
				titleB.className = '';
				charC.style.display = 'block';
			}
		};
		
		titleB.onblur = function(){
			if(titleB.value==''){
				titleB.value = titleB.defaultValue;
				titleB.className = 'faded';
			}
		};
	
	};
	
	function checkempties(){
		if(titleB.value==""||titleB.value==titleB.defaultValue){
			titleB.className = 'focus';
			return false;
		}
		titleKeyPress(titleB.value);
		return true;
	}
	
	function titleKeyPress(){
		charC.innerHTML = (limit - titleB.value.length) + " characters remaining";
	}