// JavaScript Document
$(document).ready(function() {
	$('.meer-info').click(function() {
		if($('#meer-info').css('display') == 'none') {
			$('#meer-info').slideDown();
			$(this).find('.meer-info-icon').attr('src', '/img/min.gif');
		}
		else {
			$('#meer-info').slideUp();
			$(this).find('.meer-info-icon').attr('src', '/img/plus.gif');
		}
	});
	$(function() {
		$('#imageholder').cycle();
	});
});

function languagePopup(language) {
	var text;
	if(language == 'English') {
		text = "The Mercurius Group website will be available in English soon.";
	}
	else if(language == 'Serbian') {
		text = "The Mercurius Group website will be available in Serbian soon.";
	}
	else if(language == 'German') {
		text = "The Mercurius Group website will be available in German soon.";
	}
	alert(text);
	return false;
}

