$(document).ready(function() {
$('[class^=menu_subcat]').hide();
$('[class^=expand]').click(function() {
var $this = $(this);
var x = $this.attr("className");
$('.menu_subcat_' + x).toggle(200);
return false;
});
});

function display_data(opt,id) { 
    xmlhttp=new XMLHttpRequest();

    if (xmlhttp==null) {
        alert ("Your browser does not support AJAX!");
        return;
    } 
    var url="ordonare.php";
    url=url+"?optiune="+opt+"&id="+id;
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete") {
            document.getElementById('data').innerHTML=xmlhttp.responseText;
        }
    }
    xmlhttp.open("GET",url,true);
    xmlhttp.send(null);
}

$(function() {
        $('#gallery a').lightBox();
    });
