$(function() {
				$(".gallery br").remove();
			});
$(function() {
	$("input[placeholder]")
		  .each(
		function () {
			 var term = $(this).attr("placeholder");
			 $(this).val(term); 
			
		}).focus(
		 function() { 
				$(this).val(""); 
		}).blur( 
			function(){ 
					if (this.value == '') { 
						var term = $(this).attr("placeholder");
						$(this).val(term); 
					};	
			});
	});

	$(function() {
		$("input[autofocus]").focus();
	});


