jQuery(function($){
	$('.autofill')
		.live('focus',function(){ if (this.value == this.defaultValue) this.value = ''; })
		.live('blur', function(){ if (this.value == '') this.value = this.defaultValue; });
	//Cross-Domain Links (New - Works with Ajax-loaded content)
	var re = /^https?:\/\/([\w\d.-]+)/i, hn = location.hostname.toLowerCase();
	$('a[href]').live('click',function(){
		var m = this.href.match(re);
		if (m && m[1].toLowerCase() != hn) {
			$(this).attr('target','_blank');
		}
	});
	//PRINT LINKS OPEN IN POPUP WINDOW
	$('a.print').click(function() {
	window.open(this.href,'','toolbar=no,menubar=no,scrollbars=yes,width=800,height=420');
	return false;
});
	
	
});

