/// JavaScript Document
/// by frizbee.be

	$(document).ready(function(){
					
		/// get the request prefix from the hidden input field in the footer
			
			function request_prefix()
			{
				return $('#request_prefix').val();
			}
			
		/// validate the contact when submitting
			
			$('.contactform, .userform').validate({
				errorLabelContainer: $("#javascriptmessage"),
				wrapper: 'p'
			});
			
		/// activate fancybox for pictures
			
			$("a[rel=fancybox]").fancybox({
				'type'				: 'image',
				'padding'			: 10,
				'autoScale'			: true,
				'cyclic'			: true,
				'overlayOpacity'	: 0.7,
				'overlayColor'		: '#000000',
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'titlePosition' 	: 'over',
				'titleShow'			: false,
				'resize'			: 'Auto'
			});
			
			
	});
