﻿//menus.js - styles for menus

$(document).ready(function(){

var el = $('#current').parent().html();

var container = document.getElementById('right_menus');

//if there is right menu for this page
if (container){
	container.innerHTML = "<ul>" + el + "</ul>";
}

});

