$(document).ready(function()
{	
	var curCountry = curCntry;
	var map;
        var selectedTab = "0";
       
        if(curCountry != '' && curCountry != 'null')
        {			
                if(curCountry=='Belgium' || curCountry=='Belgie' || curCountry=='Belgien')
		{                       
                 	selectedTab = "0";
    			
		}
                if(curCountry=='Germany/Lunen' || curCountry=='Duitsland/Lunen' || curCountry=='Deutschland/Lunen')
		{			
                	selectedTab = "1";  			
		}
		if(curCountry=='Germany/Stuttgart' || curCountry=='Duitsland/Stuttgart' || curCountry=='Deutschland/Stuttgart')
		{			
                	selectedTab = "2";  			
		}
		if(curCountry=='The Netherlands' || curCountry=='Nederland' || curCountry=='Niederlande')
		{                   
			selectedTab = "3";                           
    		
		}
        }
        else
        {
        	if(locle=='nl'){
        		curCountry = "Belgie";
        	}
        	else if(locle=='de'){
        		curCountry = "Deutschland/Lünen";
        	}
        	else{
	        	curCountry = "Belgium";
        	}
        }

	$("#tabs").tabs({   
		selected: selectedTab,                 
		select: function(ui) {        						
    	}
	});
	showContactDiv(curCountry,arrCntry);               
});
