jQuery(document).ready(function(){

	jQuery('#Form_ShareIdeaForm_action_submitIdea').click(function(){
		
		if(jQuery('#Form_ShareIdeaForm_Contents').val() == 'tell us here...')
		{
			//prevent form submit
			return false;
		}	
		
	});
	
});
