/********************************************************************
    File:   
        about.js
    Brief:  
        Implementation of JavaScript functionality for 
        the about.html page
    Dependencies:
        jquery-1.3.2.min.js             (jQuery library)
        jquery.easing.1.2.js            (jQuery library plugin)
    Author:
        DigitalCavalry
    Author URI:
        http://graphicriver.net/user/DigitalCavalry
*********************************************************************/ 

// alias to jQuery library, function noConflict release control of the $ variable 
// to whichever library first implemented it
var $j = jQuery.noConflict();
    
/***************************************
    MAIN CODE - CALL THEN PAGE LOADED
****************************************/
       
// binding action to event onload page
$j(document).ready(
    function() {
        // common.js      
        setupGlobal();
        setupCommunityButtons();
        setupToolTipText();
        setupSearchBox();
        //setupCufonFontReplacement();
        setupSideBarMiniSlider();
        setupMultiImageLightBox();
        setupSidebarTabsPanel();
        setupLoadingAsynchronousImages();
        setupToolTipImagePreview();
        setupTextLabelImagePreview();
        // this file
        //jQuery(".colorBoxPopup").colorbox({ width: 680, height: 600, iframe: true });
    }
);





        
