//title helpery
$(document).ready(function(){
    titleHelpersANormal();
    titleHelpersFormInput();
    dateParser();
    $('#contentMain').fadeIn(200);
   
})
function dateParser(){

}
function titleHelpersANormal(){
    $('a[title].normalTitleHelper').tooltip({
        predelay        :   '300',
        delay           :   '400',
        tipClass        :   'tooltip',
        opacity         :   '0.8',
        effect          :   'fade'
    })
}
function titleHelpersFormInput(){
    $('input[title]').tooltip({
        predelay        :   '300',
        delay           :   '400',
        tipClass        :   'tooltip',
        opacity         :   '0.8',
        effect          :   'fade',
        offset          :   [0,-60],
        position        :   "center left"
    })
}


