$(document).ready(function(){
	// absolute labels
	$('input[type=text]', '.formpage form').each(function(){
		$(this).parent().find("label").animate({
			"opacity": this.value == "" ? 1 : 0}, 1, function(){
				if($(this).siblings('input,textarea').val() == "")
					$(this).show();
				else
					$(this).hide();
			})
			.click(function(){
				$(this).animate({
						"opacity": 0
					}, 200, function(){ $(this).hide() })
				.parent().find('input,textarea').focus();
			});
	}).focusin(function(){
		$(this).parent().find("label").animate({
			"opacity": 0
		}, 200, function(){ $(this).hide() });
	}).focusout(function(){
		if ($(this).val() == "") {
			$(this).parent().find("label").show().animate({
				"opacity": 1
			}, 200);
		}
	});

	// file input
	$("#show-browse").click(function(){
		$("#show-browse-file").slideToggle(200, false);
	});
});
