(function($){
	$.fn.clearDefault = function(){
		return this.each(function(){
			var default_value = $(this).val();
			$(this).focus(function(){
				if ($(this).val() == default_value) $(this).val("");
			});
			$(this).blur(function(){
				if ($(this).val() == "") $(this).val(default_value);
			});
		});
	};
})(jQuery);


$(document).ready(function() {
		
		
		/* CUFON TYPOGRAPHY
		-------------------------------------------------------------*/

		Cufon.replace('h2', {textShadow: '2px 2px #E7EBF4'})('.nav a', {hover: true})('h3.header', {textShadow: '2px 2px #E7EBF4'});
		
		
		/* ALL LINK WITH CLASS OF EXTERNAL OPEN IN NEW WINDOW
		-------------------------------------------------------------*/ 
		
		$('a.external').click( function() {
	        window.open( $(this).attr('href') );
	        return false;
	    });
	    
	    
	    /* CLEAR INPUT FIELDS ONFOCUS
		-------------------------------------------------------------*/
		
	    $('input.clear').clearDefault();
 
		
});
