jQuery(document).ready(function() {
	var defaultInputValues = new Array();
	jQuery('.input').focus(function() {
		if(!defaultInputValues[this.id])
		{
			defaultInputValues[this.id] = this.value;
		}
		
		if(this.value == defaultInputValues[this.id])
		{
			this.value = '';
		}
	});
	
	jQuery('.input').blur(function() {
		if(this.value == '')
		{
			this.value = defaultInputValues[this.id];
		}
	});
	
	jQuery('a.popup').click(function()
		{
			window.open(this.href, this.title, "menubar=0,resizable=1,scrollbars=1,width=900,height=600");
			return false;
		});
	
	jQuery('.dns_showhide').hover( function()
				{
					var parts = jQuery(this).attr('id').split('-');
					var itemId = '#' + parts[1];
					jQuery(itemId).show();
				},
				function()
				{
					var parts = jQuery(this).attr('id').split('-');
					var itemId = '#' + parts[1];
					jQuery(itemId).hide();
				} );
});
