$(function () {
    //ak nemame ziadnu ponuku - roztiahneme jobcareer na 100%
    if ($('#joboffers div.job').length = 0) {
        $('#joboffers').hide();
    } else if ($('#jobcareer').length > 0 && $('#joboffers div.job').length > 0) {
        $('#joboffers').css({
            'float': 'left',
            'width': '355px'
        });
        $('#jobcareer').css({
            'float': 'left',
            'width': '335px',
            'margin-left': '10px',
            'padding-left': '9px',
            'border-left': '1px dotted #666666',
            'min-height': $('#joboffers').height()
        });
    }
    if ($('#jobcareer').length > 0) {
        $('#jobcareer').load(LANGROOT + '/praca/jobcareer/',{
            sector: JOBSECTOR,
            portal: JOBPORTAL
        });
    }
});
