$(document).ready(function() {

	$('#nav ul').hide();
	
	$('#nav>li').mouseover(function() {
		$(this).children('ul').show();
	});
	$('#nav>li').mouseout(function() {
		$(this).children('ul').hide();
	});
	
	var pages = {
		fr: ['recrutement','produits','modules_poses','administration_subsides','photovoltaique','comment','centrale','reduire_facture','calculateur','contact','mentions_legales'],
		nl: ['rekrutering','producten','modules_plaatsing','administratie_subsidies','fotovoltaische','hoe_werkt_het','centrale','verlaag_factuur','kost','contact','juridische_info']
	};
	
	var pathname = window.location.pathname.split('/');
	var lang = (pathname[2]) ? pathname[2] : 'fr';
	var page = (pathname[3]) ? pathname[3] : 'company';
	var other_lang = (lang == 'fr') ? 'nl' : 'fr';
	var other_page = '/index.php/';
	
	var pos = jQuery.inArray(page,pages[lang]);

	if (page == 'company' || pos == -1) {
		if (lang == 'fr') {
			other_page += 'nl';
		}
	}
	else {
		other_page += other_lang+'/'+pages[other_lang][pos];
	}

	if (lang == 'fr') {
		$('a.nl').click(function() {
			window.location.href = other_page;
			return false;
		});
	}
	else {
		$('a.fr').click(function() {
			window.location.href = other_page;
			return false;
		});
	}
	
});