$(document).ready(function() {
    $('.projects').tabs();
    
    // Form Input
     $('.change').focus(function() {
         if (this.value == this.defaultValue) {
     this.value = ''; }});
     
     $('.change').blur(function() {
         if (this.value == '') {
     this.value = this.defaultValue; }});
    
    //Fancybox
    $("a.fancybox").fancybox();
    
    // Tooltip
    $('.tooltip').tipsy({
        gravity: 's',
        fade: true        
        });

 });
