var M_domein	= "frebsite";
var M_extentie	= "nl";

function mail_link(o, d, e, t) {
	if (typeof(o) == 'undefined' || o == '') o = "info";
	if (typeof(d) == 'undefined' || d == '') d = M_domein;
	if (typeof(e) == 'undefined' || e == '') e = M_extentie;

	var adres = o + '@' + d + '.' + e;
	
	if (typeof(t) == 'undefined' || t == '') t = adres;
	
	document.write('<a href="mailto:' + adres + '">' + t + '</a>');
}

$(function() {
//	transparante schaduw containers
	$('.transparent').each(function() {
		var $t = $(this).before('<div class="transparent_top" />').after('<div />'),
			$p = $t.prev(),
			$b = $t.next();

		if ($t.hasClass('p1'))		$p.addClass('p1');
		if ($t.hasClass('p2')) 		$p.addClass('p2');
		if ($t.hasClass('robot'))	$b.addClass('transparent_schoolboard');
		else						$b.addClass('transparent_bottom');
	});

//	hoogte achtergrond
	var $pla = $('#placeholder'),
		$hea = $('#header'),
		$foo = $('#footer');

	$(window).resize(function() {
		var min = $('body').height() - $hea.outerHeight(true) - $foo.outerHeight(true);

			$pla.css('height', 'auto');
		if ($pla.outerHeight(true) < min) {
			$pla.height(min);
		}
	}).trigger('resize');

//	redirect download-button
	if (window.location.href.indexOf('download.php') == -1) {
		$('#header h3 a').click(function() {
			setTimeout(function() {
				window.location.href = siteroot + 'download.php';
			}, 1500);
		});
	}
});
