$(function() {
	//placeholder
    $('.placeholder P').click(function(e){
   	
        $(this).children('label').hide();

        $(this).children('input').focus();

        $(this).children('textarea').focus();

    });

    $('.placeholder input').focus(function(){

        $(this).next('label').hide();

    });

    $('.placeholder input').focusout(function(){

        if($(this).val() == "")

            $(this).next().show();

    });

    $('.placeholder input').each(function(){

        if($(this).val() == "")

            $(this).next().show();  
        else 
        	
        	$(this).next().hide();
    });

    $('.placeholder textarea').focus(function(){

        $(this).next('label').hide();

    });

    $('.placeholder textarea').focusout(function(){

        if($(this).val() == "")

            $(this).next().show();  

    });

    $('.placeholder textarea').each(function(){

        if($(this).val() == "")

            $(this).next().show();  

    });
});
