/*
 * Ext JS Library 2.1
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 *
 * http://extjs.com/license
 */

Ext.onReady(function(){
    new Ext.ToolTip({
        target: 'pixels',
        html: 'Images should be 72 dpi (dots or pixels per inch) for on-screen presentation.'
    });

    new Ext.ToolTip({
        target: 'contactme',
        html: 'Call Lynn at 604.462.8317'
    });



    Ext.QuickTips.init();

});

