$(document).ready(function(){		
		if($('.zebra-table').length) {
			$("tr:nth-child(even)").addClass("alt");
	 	}
		if($('.overlay').length) {
			$('.overlay').each(function()	{ setFocusValues($(this)); });
		}	
});

function setFocusValues(input) {
	input.focus(function(){ if ($(this).val() == '') {$(this).prev().addClass('focus');	}});	
	input.blur(function()	{ if ($(this).val() == '') { $(this).prev().removeClass('focus').removeClass('hastext');}});	
	if ($(input).val() != '') {$(input).prev().addClass('hastext');};	
	input.keydown(function(){ if ($(this).val() != '') {$(this).prev().addClass('hastext');}});	
}
