/* @version $Id: v 0.1 21.07.2010 - 17:31:40 Exp $
 *
 * Project:     aquarium
 * File:        index.js *
 *
 * This library is commercial distributed software; you can't
 * redistribute it and/or modify it without owner (or author) approval.
 *
 * @link http://bestartdesign.com
 * @copyright (C) 2009
 *
 * @author Seyar Chapuh <seyarchapuh@gmail.com>, <sc@bestitsolutions.biz>
 */

function mainPrev()
{
    var num = $('.obitItem').length-1;
    var div = $('.obitItem').eq(num);
    $('.obitInner').prepend(div);
}

function mainNext()
{
    var div = $('.obitItem').eq(0);
//    div.remove();
    $('.obitInner').append(div);
}
