Cufon.replace('.logo span, h1, h2, h3, h4 , h5, h6, .learnmore, .prosto_button, .pdf_button, .submitone a, #phonenumber, .comment-reply-link, .slide_button, .page_title .bold p, .textonlycont');	

var $jq = jQuery.noConflict();

   $jq(document).ready(function(){



      var ex = [

             "Enter your e-mail address (required)",
			 "Enter your e-mail address",
			 "Enter your name (required)",
			 "Enter your name",

               "another" ];

      

      	$jq("input.submit").click(function(){



        	 var myform = $jq(this).parent("fieldset").parent().attr("id");



       		$jq("#"+myform+" input").each(function(){

               		var myid = $jq(this).attr("id");

               		var myval = $jq(this).val();
			if(myval == ''){
				var myval = $jq(this).text();
			}
			// alert("val:"+myval);

               		var res = $jq.inArray(myval,ex);

      //       		alert("Testing "+myval+" returned "+res);

               		if(res > -1){

                  		$jq(this).val('');

				return false;

			}

      		});

	});

});


