

$(document).ready(function(){

	$('input#kiiyhk-kiiyhk').focus(function() {
		$(this).parent().addClass("inputfocus")
	});
	$('input#kiiyhk-kiiyhk').blur(function() {
		$(this).parent().removeClass("inputfocus")
	});
	
	$('input#kiiyhk-kiiyhk').blur(function() {
        if(this.value=='')
        {
            this.value=this.defaultValue; $(this).parent().removeClass("inputfocus")
        }
        else
        {
            $(this).parent().addClass("inputfocus")
        }
    });

			
	
});


