/* ----------------------------------------------------------------
 * FILE: global.js
 * ----------------------------------------------------------------
 * Created: 07-09-08 (dd-mm-yy)
 * Template: NightMedia
 * ---------------------------------------------------------------
*/

$core = {
    
    context : false,
    
    getContext: function() {
        if(this.context === false) {
            this.context = $("#site-container");
        }
        return this.context;
    },
    
    init : function() {        
        this.prepareScrollTop();        
    },
    
    /* -------------------------------------------------------------- */
    /* Prepare scroll animation for "#top" links
         /* -------------------------------------------------------------- */    
    prepareScrollTop : function() {
        $('a[href="#header"]', this.getContext()).mousedown(function() {             
            $.scrollTo('#header', 1000);
        });        
    }
}  


$(function() {
    $core.init();
});