/*
 * 	alert 1.0 - jQuery plugin
 *	written by Chris Schindler	
 *	http://www.paperastronaut.com
 */
 
 
 $(document).ready(function() {
	 $('a.email-alert').click(function(event){
     alert("Please read this notice before sending an email message to Venture Law Advisors." + '\n' + '\n' +

"Any information you send us in an email is not to be considered confidential or privileged and will not make you a client of Venture Law Advisors. Venture Law Advisors has no obligation to keep your information confidential." + '\n' + '\n' +

"If you are interested in having us represent you, please call us so we can determine whether the matter is one that we are willing or able to accept, and one that is consistent with our professional responsibilities and obligations to other clients. We reserve the right to decline any representation. We will not make this determination by email communication."

+ '\n' + '\n' +

"By continuing to the next step, you are confirming that you have read and understand this important notice.");

	});
	 
 });
	
