$(function(){
    $('#tabs').tabs();

    $('#cats').change(function(){
        $('#rescat').html('');
        id=$(this).val();
        if (id) {
            $.ajax({
                      type: "POST",
                      url: "/modules/ajax.php?action=by_catid",
                      data: "id="+id,
                      success: function(msg){
                        $('#rescat').html(msg);
                      }
            });
        }

    })



    $('#alpha a').click(function(){
        l=$(this).attr('rel');
        if (l) {
            $.ajax({
                      type: "POST",
                      url: "/modules/ajax.php?action=by_alphabet",
                      data: "l="+l,
                      success: function(msg){
                        $('#resalpha').html(msg);
                      }
            });
        }
        return false

    })

    $('.moreinfo').live('click',function(){
        rel=$(this).attr('rel');

        if( $('#info'+rel).is(':visible') ) {
            $('#info'+rel).hide();
	    $('#div'+rel).css('border','0');

	}
	else {
	    $('#div'+rel).css('border','1px solid white');
            $('#info'+rel).show();
	}

        
        return false;
    })

})


