
$(document).ready(function(){
    /*$('#category').click(function(){
        $(this).addClass('active');
        $('#brend').removeClass('active');
        
        $('#m1').show();
        $('#m2').hide();
        
        return false;
    });
    $('#brend').click(function(){
        $(this).addClass('active');
        $('#category').removeClass('active');
        
        $('#m1').hide();
        $('#m2').show();
        
        return false;
    });
    $('.level3 li').click(function(){
        $(this).addClass('active');
    });*/
    
    $('.close-prod').click(function() {
        $(this).parent().parent().parent().fadeOut();
        return false;
    });
});

function showMF(linkObj, id, en){
    linkObj.blur();
    var f = (en == 'en') ? '/en' : '';
    $('#prod-prod .prod-cont').load(
        f + '/products/?action=ajaxShowItem&id=' + id + '&cache=' + Math.random(),
        {},
        function() {
            var top = parseInt($(document).scrollTop());
            if (top < 250) 
                top = 250;
            $('#prod-prod').css( { left: '10px', top: (top - 200) + 'px' } ).fadeIn();
        }
    );

    return false;
}