/* <![CDATA[ */

$(document).ready(function(){
		$('area').each(function()
	   {
		  $(this).qtip(
		  {
			 content: $(this).attr('title'), // Use the ALT attribute of the area map
			 style: {
				name: 'light', // Give it the preset dark style
				border: {
				   width: 0, 
				   radius: 4 
				}, 
				tip: true // Apply a tip at the default tooltip corner
			 }
		  });
	   });

		$('input[type="text"]').focus(function() { 
				
				if (this.value == this.defaultValue){  
          this.value = '';  
				}  
				
				this.select();
		 });
		 
		 $('input[type="text"]').blur(function() {  
				if (this.value == ''){  
          this.value = this.defaultValue;  
				}  
		 });
		 
		 $('textarea').focus(function() { 
				
				if (this.value == this.defaultValue){  
          this.value = '';  
				}  
				
				this.select();
		 });
		 
		 $('textarea').blur(function() {  
				if (this.value == ''){  
          this.value = this.defaultValue;  
				}  
		 });
});

/* ]]> */
