$(function(){

	$('.in-put-label').each(function(){
		var labelText = $(this).find('strong').html();
		var tarName = $(this).attr("for");
		var tarInput = $("input#" + tarName);
		$(this).find('strong').hide();
		$(tarInput).val(labelText);
		$(tarInput).click(function () { 
			if($(this).val() == labelText){ $(this).val(''); }
	    });
	    $(tarInput).blur(function () { 
			if($(this).val() == ""){ $(this).val(labelText); }
	    }); 
	});

	$(document).pngFix();
	
	$('#e-blue').scrollingParallax({
        staticSpeed : .1,
        reverseDirection : true,
        staticScrollLimit: false
    });
    $('#e-green').scrollingParallax({
        staticSpeed : .2,
        reverseDirection : true,
        staticScrollLimit: false
    });
    $('#e-pink').scrollingParallax({
        staticSpeed : .3,
        reverseDirection : true,
        staticScrollLimit: false
    });

});