jQuery(function() {

//////////////////
////// BAFO //////
//////////////////

    // Transform pages navigation widget
    $(".widgettitle").remove();
	$(".children").remove();
	$(".menu > ul").attr("id", "menu");
	//
	
	// Extract ngg gallery pictures from default <div> block
	var gallery_html = $(".gallery > .ngg-widget").html();
	$(".ngg-widget").remove();
	$(".gallery").append(gallery_html);
	//
	
	// Add id="ReservationForm" to <form> tag
	$("form").attr("id", "ReservationForm");
	//
	
	// jQuery carousel gallery
	//$('.gallery').jcarousel({
        // Configuration goes here
    //});
	//
////////////////////////////////
////// End Central Avenue //////
////////////////////////////////

    // Transform footer bookmarks list
    $("div.section_w180").each(function()
    {
        var linkcat = $(this).children(".section_w180_content").children(".footer_menu_list").children("li.linkcat").children("h2").text();
        // Do not show section if it is empty
        if (linkcat == '') $(this).remove();
        var bookmarks = $(this).children(".section_w180_content").children(".footer_menu_list").children(".linkcat").children("ul.blogroll").html();
        $(this).children("div.header_05").text(linkcat);
        $(this).children("div.section_w180_content").children(".footer_menu_list").html(bookmarks);
    });

    //$("#navigation > li:first").addClass('first');
    $("#navigation > li:last > a").addClass('last');

    // Straipsniu spalvos
    $(".column_w300_section_01:odd").addClass('even_color');
});

