jQuery(function(){
	//popup links
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	//form focus styling
	 $('input[type="text"]').focus(function() {
		 $(this).addClass("focusField");
		 if (this.value == this.defaultValue){
			 this.value = '';
		 }
		 if(this.value != this.defaultValue){
			 this.select();
		 }
	 });
	 $('input[type="text"]').blur(function() {
		 $(this).removeClass("focusField");
	 });
	 
	//email spam protection
    $('.email').each(function() {
		var $email = $(this);
		var address = $email.text()
        .replace(/\s*\[at\]\s*/, '@')
        .replace(/\s*\[dot\]\s*/g, '.');
		$email.html('<a href="mailto:' + address + '">'
        + address +'</a>');
    });

});