function initSearcher(){
    jQuery("#searcher-tabs").tabs();
	jQuery("#searcher-tabs ul.ui-tabs-nav li").each(function(index){
		jQuery(document.createElement('li')).css({ width:"1px", "background-color":"#0FB900", height:"22px" }).insertAfter(this);
	});
	jQuery("#searcher-tabs ul.ui-tabs-nav li:first a").addClass("corner-top-left");	
}

function setAirline(airline) {
	jQuery("#carrier_1").selectOptions(airline);
}

function loadMain(){
	if (jQuery("#searcher-tabs ul.ui-tabs-nav li").children().eq(1).text() == 'Mapa lotniska') {
		jQuery("#searcher-tabs").bind('tabsselect', function(event, ui){
		if (ui.index == 1)
			loadScript();
		});
	}
}

function readyMain(){
    initSearcher();
}
