/*
 * jQuery 1.2.3 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
 * $Rev: 4663 $
 */
/* --------- COLLAPSABLE BLOCKS FOR RAMBLER GUIDE LANDING PAGES - THEME OVERVIEW ---------- */
$(document).ready(function(){
    
    //$(".accordion h3:first").addClass("active");
    $(".expandable-menu ul").show();
    $(".expandable-menu h3").click(function(){
		/*alert('hello!');*/
        $(this).next("ul").slideToggle("slow")
        .siblings("ul:visible").slideUp("slow");
        $(this).parent("li").toggleClass("active");
        $(this).siblings("li").removeClass("active");
    });
});

