$(document).ready(function(){

	$('#popConditions').hide();
	$('#popTerms').hide();
	
	$(".openConditions").click(function () {

		$('#popConditions').show();
      $('#global').hide();
	});



	$(".fermerPopIn").click(function () {

		$('#popConditions').hide();
		$('#global').show();

	});
	
	
	
		$(".openTerms").click(function () {

		$('#popTerms').show();
      $('#global').hide();
	});



	$(".fermerPopIn").click(function () {

		$('#popTerms').hide();
		$('#global').show();

	});
	
	
	$('#lang-form').submit(function() {
		var action = $(this).find('#language').val();
		$(this).attr('action', action);
		return true;
	});
});

