	/// JavaScript Document
	/// by frizbee.be
	
		$(document).ready(function(){
			
			/// activate fancybox for pictures
				
				$("a[rel=lightbox]").fancybox({
					'type'				: 'image',
					'padding'			: 10,
					'autoScale'			: true,
					'cyclic'			: true,
					'overlayOpacity'	: 0.7,
					'overlayColor'		: '#000000',
					'transitionIn'		: 'fade',
					'transitionOut'		: 'fade',
					'titlePosition' 	: 'over',
					'titleShow'			: false,
					'resize'			: 'Auto'
				});
	
			/// validate the contact when submitting
				
				$('.siteform').validate({
					errorLabelContainer: $("#javascriptmessage"),
					wrapper: 'p'
				});
				
			/// get the request prefix from the hidden input field in the footer
				
				function request_prefix()
				{
					return $('#request_prefix').val();
				}
							
		});
	
	/// make an email link
	
		function make_email_link(user, host, subject)
		{
			document.write('<a href="mailto:' + user + '@' + host + '?subject=' + subject + '">' + user + '@' + host + '</a>');	
		}

