$(document).ready(function(){$('.email').click(function()	{		var email_id = $(this).attr('id');		//alert(email_id);		// remove the record here.		jQuery.ajax({			type:"POST",			url:"code/get_career_email.php",			data:'idkey='+email_id,			cache:false,			success:function(response){			var email_link = '<a href="mailto:'+response+'">'+response+'</a>'			$('#'+email_id+'').html(email_link);			//alert(response);			//$('#comment_form').toggle('slow');			//$('.email a[href$="' + path + '"]').attr('class', 'selected');										}				})	});$('.get_email').click(function()	{// get_email retrieves email from email db, used in content of site.		var email_id = $(this).attr('id');		//alert(email_id);		// remove the record here.		jQuery.ajax({			type:"POST",			url:"code/get_email.php",			data:'name='+email_id,			cache:false,			success:function(response){			var email_link = '<a href="mailto:'+response+'">'+response+'</a>'			$('#'+email_id+'').html(email_link);			//alert(response);			//$('#comment_form').toggle('slow');			//$('.email a[href$="' + path + '"]').attr('class', 'selected');										}				})	});	});function open_window(theURL,winName,features) { //v1.0  window.open(theURL,winName,features);}
