/**
 * Common javascript file
 *
 * @author Silver Zachara
 * @copyright 2008 © 2008 Silver Zachara
 * @license
 * @version $Id$
 */

var mySmoothScroll = new SmoothScroll();

/**
 * Jump to the top of a site.
 * 
 * If not defined window.location.hash, then jump to the top of a site, beacuse
 * in some browser the site is rendered in the middle.
 * 
 * @return void
 */
function jumpTop() {
    if (window.location.hash === '') {
        window.location.hash = '#wrapper';
    };
}

