﻿//global tooltip parameters

var TOOLTIP_PARAMS = {};

$(function() {
    $('.link').defuscate();    
    
    
    //initialize our tooltips
//    TOOLTIP_PARAMS = {
//        showBody: '{split}'
//        ,showURL: false
//        ,track: 'true'
//    };
//    $('.tooltip').Tooltip(TOOLTIP_PARAMS);
//    
//    //initialize blurb hover
//    $('#lessee_hover').hover(function() {
//        $('#showblurb').text('View and manage your account');
//    }, function() {
//        $('#showblurb').text(' ');
//    });
//    
//    $('#retailer_hover').hover(function() {
//        $('#showblurb').text('Create leases and manage account');
//    }, function() {
//        $('#showblurb').text(' ');
//    });
//    
//    $('#pawn_hover').hover(function() {
//        $('#showblurb').text('Dealers/pawn shops screen leased watches');
//    }, function() {
//        $('#showblurb').text(' ');
//    });
//    
//    $('#inspector_hover').hover(function() {
//        $('#showblurb').text('Upload reports on returned watches');
//    }, function() {
//        $('#showblurb').text(' ');
//    });
    
    
    
    
});