$(document).ready(function(){	
	// Contact Us Form
	$("#webform-client-form-15").submit(function(){	
		var lastName = $("#webform-client-form-15 #edit-submitted-last-name").val().toString();
		var companyName = $("#webform-client-form-15 #edit-submitted-company").val().toString();
		var email = $("#webform-client-form-15 #edit-submitted-email-address").val().toString();
		
		if(lastName.length > 0 && email.length > 0){
			logOCSale('isconv=1|itemcount=1|itemvalue=0|m1=Contact Form|m2=' + lastName + '|m3=' + companyName + '|m4=' + email);
		}
	});
	
	// Join Mailing List
	$("#webform-client-form-101").submit(function(){
		var lastName = $("#webform-client-form-101 #edit-submitted-last-name").val();
		var companyName = $("#webform-client-form-101 #edit-submitted-company").val();
		var email = $("#webform-client-form-101 #edit-submitted-email").val();
		
		if(lastName.length > 0 && companyName.length > 0 && email.length > 0){
			
			logOCSale('isconv=1|itemcount=1|itemvalue=0|m1=Mailing List|m2=' + lastName + '|m3='+ companyName +'|m4=' + email);
			
		}
	});
	
	// PDF Download
	$("#webform-client-form-125").submit(function(){
		var lastName = $("#webform-client-form-125 #edit-submitted-last-name").val();
		var companyName = $("#webform-client-form-125 #edit-submitted-company-name").val();
		var email = $("#webform-client-form-125 #edit-submitted-email").val();
		
		if(lastName.length > 0 && companyName.length > 0 && email.length > 0){
			
			logOCSale('isconv=1|itemcount=1|itemvalue=0|m1=PDF Download|m2=' + lastName + '|m3=' + companyName + '|m4=' + email);
		
		}
	});
	
	$(".emaillink").click(function(){
		var email = $(this).find("a").attr("href").replace("mailto:","");
		var name = $(this).attr("title");
		
		if(email.length > 0 && name.length > 0){
				logOCSale('isconv=1|itemcount=1|itemvalue=0|m1=Email Team|m2=' + email + '|m3=' + name);
			}
	});
	
	$(".emaillinksingle").click(function(){
		var email = $(this).attr("href").replace("mailto:","");
		var name = $(this).html();
		
		if(email.length > 0 && name.length > 0){
				logOCSale('isconv=1|itemcount=1|itemvalue=0|m1=Email Team|m2=' + email + '|m3=' + name);
			}
	});
	
	
});
