function makeHuman(){
	$("input#is_person").val("true");
};
function prepContactForm(){
	$("input[type='text']").bind("focus",function(){
		makeHuman();
	});
	$("textarea").bind("focus",function(){
		makeHuman();
	});
};
//Document Ready Core
$(function($) {
    $("img[@src$=png]").pngfix();
}
);


