$(document).ready(function(){    
    El_nr = 1;
    var maxHeight = 0;

$('.polecamy-right').each(function(){
   if (maxHeight < $(this).height()) maxHeight = $(this).height();    
});

$('.polecamy-right').each(function(){ 
    $(this).height(maxHeight);
});


$('.content-right > .polecamy > ul > li').click(function(){
    
    if ($(this).hasClass('selected')) return true;
    efTime = 0;    
    el_nr =  $(this).attr('id').replace('li_polecamy_','');
    $(this).addClass('selected').siblings().removeClass('selected');
    $('#polecamy_'+el_nr).siblings('.polecamy-right').hide(efTime,function(){
        $('#polecamy_'+el_nr+' .polecamy-box , #polecamy_'+el_nr).slideDown(efTime);
    });
    
    

    $('.polecamy-lista').each(function(){
        $(this).hide();
    });        
    return false;
});

$('.sprawdz_date').click(function()
{
    $('#sprawdz_w_swoim_miescie_'+el_nr).show();
    $('#polecamy_'+el_nr).hide();
    return false;
});

$('p.wiecej-szkolen > a.sprawdz').click(function()
{
    $(this).parent().parent().hide();   
    $(this).parent().parent().siblings('.polecamy-lista').fadeIn(500);
    
    return false; 
});

$('p.wiecej-szkolen > a.powrot').click(function()
{
    $(this).parent().parent().siblings('.polecamy-box').show();   
    $(this).parent().parent().hide(0);
    
    //alert('w');
    
    return false; 
});


});
