
	$(document).ready(function() {


	if ($.cookie("confLang") == 'en'){
		$('#romContent').hide();
		$('#enContent').show();

		$('#confRo').css({'font-weight':'normal'});
		$('#confEn').css({'font-weight':'bold'});
		//$("#confHeader").attr("src","images/confHeaderEn.jpg");

	}else{
		$('#romContent').show();
		$('#enContent').hide();

		$('#confEn').css({'font-weight':'normal'});
		$('#confRo').css({'font-weight':'bold'});
		//$("#confHeader").attr("src","images/confHeaderRo.jpg");
	}


	//select all the a tag with name equal to modal
	$('a[name=modal]').click(function(e) {
		//Cancel the link behavior
		e.preventDefault();
		//Get the A tag
		var id = $(this).attr('href');
			$(id).modal();
	  		return false;

	});

	//if close button is clicked
	$('.window .close').click(function (e) {
		$.modal.close();
	  		return false;
	});

	//if mask is clicked
	$('#mask').click(function () {
		$.modal.close();
	  		return false;
	});

	$('#confEn').click(function() {
		$('#romContent').hide();
		$('#enContent').show();
		//$("#confHeader").attr("src","images/confHeaderEn.jpg");

		$('#confRo').css({'font-weight':'normal'});
		$('#confEn').css({'font-weight':'bold'});
		$.cookie("confLang", "en");
	})

	$('#confRo').click(function() {
		$('#romContent').show();
		$('#enContent').hide();
		//$("#confHeader").attr("src","images/confHeaderRo.jpg");

		$('#confEn').css({'font-weight':'normal'});
		$('#confRo').css({'font-weight':'bold'});
		$.cookie("confLang", "ro");
	})
});

