/*
 * 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").hide();
    $(".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");
    });
});

 --------- COLLAPSABLE BLOCKS FOR SITEMAP ---------- */
$(document).ready(function(){
    
    //$(".accordion-sitemap p:first").addClass("active");
    $(".eng-privacy-wrapper div.eng-privacy").hide();
    $(".wel-privacy-wrapper div.wel-privacy").hide();
    $(".add-info-wrapper div.add-info").hide();
	//English function
    $("#eng-privacy-link").click(function(){
		//alert('hello English!');
        $(this).next("div").slideToggle("slow")
        .siblings("div:visible").slideUp("slow");
        $(this).toggleClass("active");
        $(this).siblings("p").removeClass("active");
    });
	//Welsh function
    $("#wel-privacy-link").click(function(){
		//alert('hello Welsh!');
        $(this).next("div").slideToggle("slow")
        .siblings("div:visible").slideUp("slow");
        $(this).toggleClass("active");
        $(this).siblings("p").removeClass("active");
    });
	//add info function
    $(".add-info-link").click(function(){
		//alert('hello English!');
        $(this).next("div").slideToggle("slow")
        .siblings("div:visible").slideUp("slow");
        $(this).toggleClass("active");
        $(this).siblings("p").removeClass("active");
    });
});
