/*
	wall.js
	Functions used by the wall fund raising pages.
*/
jQuery(document).ready(function() {

	// Prevent submission
	jQuery('#WallPayForm').submit(
		function(){
			var myVal = jQuery('#WallPayForm #os0').val();
			if(myVal.length == 0){
				alert("Please enter the name you would like displayed on your brick.");
				jQuery('#WallPayForm #os0').css('backgroundColor','#eeee88');
				return false;
			}else{
				return true;	
			}

		});
	

});