//depends on jQuery
jQuery(document).ready(function($){
    
    // accordion style nav menu
    $('#nav').accordion({
        active: '.current',
        autoHeight: false,
        header: 'a.level0',
        alwaysOpen: false,
        navigation: true
    });
    
    // change homepage background image
    if ($('body').hasClass('cms-home-tera-fr')) {
        var imglist=new Array(SKIN_URL + 'images/homepage_slide1.jpg', SKIN_URL + 'images/homepage_slide2.jpg');
        $('#top-menu-bar-slide').imageSlideshow({img:imglist,speed:5000});
    
    }   
    
    
});
