﻿/// <reference path="jquery-1.3.2.js" />
/// <reference path="jquery.corners.js" />
/// <reference path="jquery.qtip.js" />

$(document).ready(function () {
    $('div.rounded').each(function () {
        eval($(this).corner("9px"));
    });

    $('#main p').wrap("<code></code>");

    // For all help icons
    $('a[title]').qtip({
        style: {
            name: 'cream',
            tip: true,
            background: 'blue',
            border: {
                width: 0,
                radius: 0,
                color: 'blue'
            },
            color: '#FFFFFF'
        },
        show: 'mouseover',
        hide: 'mouseout',
        position: {
            corner: {
                target: 'leftMiddle',
                tooltip: 'rightTop'
            }
        }
    });

});
