;(function($){
    $(function() {
        $('input.field, textarea.field').
        focus(function() {
            if(this.title==this.value) {
                this.value = '';
            }
        }).
        blur(function(){
            if(this.value=='') {
                this.value = this.title;
            }
        });
        $('#main-nav ul li').hover(function() {
            $(this).addClass('hover').find('ul').show();
        }, function() {
            $(this).removeClass('hover').find('ul').hide();
        });
        
        var current_tab = $('#tabcontent .paging li').find('a.active').attr('href');
        $('#tabcontent .paging li a').click(function() {
            tab = $(this).attr('href');
            show_tab(tab);
            return false;
        });
        function show_tab(tabID) {
            $('#tabcontent .tab').fadeOut();
            $('#tabcontent .paging li a').removeClass('active');
            $('#tabcontent .paging li a[href=' + tabID + ']').addClass('active');
            $(tabID).fadeIn();
            return false;
        }
    });
})(jQuery);
