jQuery(function($){
	$('.autofill')
		.live('focus',function(){ if (this.value == this.defaultValue) this.value = ''; })
		.live('blur', function(){ if (this.value == '') this.value = this.defaultValue; });
	$('ul').each(function(){
		if ($(this).closest('li').length) return null;
		$(this).find('>li:first').addClass('first');
		$(this).find('>li:last').addClass('last');
	});
	//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');
		}
	});
	
	
});

