(function( $ ){
    $.fn.defaultValue = function() {
      
        var defaultValue = $(this).attr('value');
      
        $(this).click( defaultValue , function(){
            if( this.value != '' && this.value == defaultValue ){
                this.value = '';
            }
        });
        $(this).focusout( defaultValue , function(){
            if(this.value == '')
                this.value = defaultValue;
        });  
      
    };
})( jQuery );

jQuery(window).load(function() {
    jQuery(this).scrollTop(0);
    jQuery('input[type=text]').each( function(){
        jQuery(this).defaultValue();
    });
    jQuery('textarea').each( function(){
        jQuery(this).defaultValue();
    });
    
    if(jQuery('#fancybox').lenght != ''){
        
        jQuery("a#fancybox").fancybox({ 
            'hideOnContentClick': false, 
            'width': 940, 
            'titleShow': false, 
            'type':'iframe' 
        });
    }
    
});


