$(document).ready(function() {
    
    $("a.image").fancybox({ 'overlayOpacity': 0.6 }); 
    
    $('.form_filter .input_activities').focus(function() {
        if (this.value == this.defaultValue){
        	this.value = '';
        }
        if(this.value != this.defaultValue){
        	this.select();
        }
    });
    
    $('.form_filter .input_activities').blur(function() {
        if (this.value == ''){
        	this.value = (this.defaultValue);
        }
    });
    
});
