<!-- javascript coding -->
$(function() {
	// expose the form when it's clicked or cursor is focused
	$("form.expose").bind("click keydown", function() {

		$(this).expose({

			// custom mask settings with CSS
			maskId: 'mask',

			// when exposing is done, change form's background color
			onLoad: function() {
//				this.getExposed().css({backgroundColor: '#c7f8ff'});
			},

			// when "unexposed", return to original background color
			onClose: function() {
				this.getExposed().css({backgroundColor: null});
			},

			api: true

		}).load();
	CenterMelding();
	});
});
$(function() {
	$("#triggers img[rel]").overlay({effect: 'apple'});
});

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
var pageTracker = _gat._getTracker("UA-15054986-1");
pageTracker._trackPageview();
} catch(err) {}
