$(document).ready(function()
{
	initPopups();
});
function initPopups()
{
	$(".input-field input, .input-field textarea, .input-hplder input").each(function(i, el)
	{
		var holder = $(el).parent().parent();
		if(!$(holder).hasClass("input-required"))
		{
			$(el).focus(function()
			{
				$(holder).addClass("input-selected");
			});
			$(el).blur(function()
			{
				$(holder).removeClass("input-selected");
			});
		}
	});
}