$(document).ready(function() {
    //$('.slideshow').cycle({fx:'fade', timeout:6500, random:true});
    $('.navigation').superfish({autoArrows:false});
    //$(".testimony").scrollable({next:'.next_scroll', prev:'.prev_scroll', circular: true});
    $('.fade, .featured img, .entry a img, .widget a img, #socialnetworking img').hover(function(){$(this).fadeTo("fast", 0.8);},function(){$(this).fadeTo("fast", 1);});
    $(".thumb[title]").tooltip({position:"top, center"});
    $('.featured').scrollable({});
    $('.tooltip').live('click', function(){
        var link = $(this).find('a');
        var url = link.attr('href');
        window.location = url;
    });
    $('.blink').
        focus(function() {
            if(this.title==this.value) {
                this.value = '';
            }
        }).
        blur(function(){
            if(this.value=='') {
                this.value = this.title;
            }
    });
});
