$(document).ready(function(){
	$('.external').click(function() {
	window.open($(this).attr("href"),null);
	return false;
	})

	$("a[href^='mailto:']").click(
	function(){
	   theLink = $(this).attr('href').replace('mailto:','')
	   pageTracker._trackPageview("/emails/"+theLink);
	})
	
	$("a[href^='http:']:not([href*='" + window.location.host + "'])").not("[href*=software.webpac.com]").click(
function(){
   theLink = $(this).attr('href').replace('http://','')
   pageTracker._trackPageview("/external-links/"+theLink);
  })



 $('label input').focus(function(){
    $(this).css({'background-color':'#FFFFFF'})
  })

  $('label input').blur(function(){
    if($(this).val()=='')
$(this).css({'background-color':'transparent'})
  })

 $('label input').each(function(){
   if($(this).val()!='')
    $(this).css({'background-color':'#FFFFFF'})
  })

 $('label input').keypress(function(){
   if($(this).val()!='')
    $(this).css({'background-color':'#FFFFFF'})
  })

 $('label input').change(function(){
   if($(this).val()!='')
    $(this).css({'background-color':'#FFFFFF'})
  })

 $('label input').change(function(){
   if($(this).val()!='')
    $(this).css({'background-color':'#FFFFFF'})
  })



});


