$( document ).ready( function(){
        $('.blink')
                .focus(function(){
                        if ( $(this).attr('value') == $(this).attr('title') ) {
                                $(this).attr({ 'value': '' })
                        }
                })
                .blur(function(){
                        if ( $(this).attr('value') == '' ) {
                                $(this).attr({ 'value': $(this).attr('title') })
                        }
                })
/* comment start
        $('.side-nav > ul > li a').live('click', function(){ 
                $(this).toggleClass('active');
                $(this).parent().find('.side-dropdown').toggle(); 
                return false;
        });
comment end */

        $('.side-dropdown li').hover(
                function(){ $(this).addClass('hover'); },
                function(){ $(this).removeClass('hover'); }
        );
});

