jQuery(document).ready(function(){
    var $ = jQuery;
    var standard = {
        position:  {
            corner: {
                target: 'rightMiddle',
                tooltip: 'leftMiddle'
            },
            adjust: {
                x: 20, y: 0
            }

        },
        style: {
            name: 'blue',
            tip: "leftMiddle",
            border: {
                width: 2,
                radius: 4
            }
        },
        show: {solo: true },
        hide: { fixed: true, delay: 1000 }
    }

    $('input[title]').bind('focus', function(e) {$(this).qtip('show')}).bind('blur', function(e) {$(this).qtip('hide')}).qtip($.extend(standard,{content: {prerender: true}}));
    $('[title]:not(input)').qtip($.extend(standard,{content: {prerender: false}}));
    
    // $('input[title]').bind('blur', function(e) {$(this).qtip('hide')});
});   
