$(function(){

    $(".tb-create-main tr:first").next("tr").addClass("tr-top");
    $(".tb-create-main tr:last").addClass("tr-bottom");

    //BeautyTips
    $(".helptext").bt({
        contentSelector: "$(this).attr('title')",
        fill: '#FFF',
        width: 215,
        padding: 10,
        cornerRadius: 10,
        spikeLength: 10,
        strokeStyle: "#A99090",
        shadow: true,
        shadowOffsetX: 5,
        shadowOffsetY: 5,
        shadowBlur: 8,
        shadowColor: 'rgba(0,0,0,.5)',
        shadowOverlap: false,
        noShadowOpts: {strokeStyle: '#A99090', strokeWidth: 2},
        positions: ['top', 'middle']
    });

    if ($(".tb-create #id_title").val() == "") {
        $(".tb-create #id_title").val("Enter the policy title");
    }

    $(".tb-create #id_title")
    .css("color", "#555")
    .focus(function(){
        $(this).css("color", "black");
        if ($(this).val() == "Enter the policy title") {
            $(this).val("");
        }
    })
    .blur(function(){
        if ($(this).val() == "") {
            $(this).css("color", "#555");
            $(this).val("Enter the policy title");
        }
    });
});

