$(document).ready(function() {
	$('div.contenthighlight input#name').focusin(function() {
		$(this).attr('value') == 'Naam' ? $(this).attr('value', '').addClass('active') : $(this).attr('value');
	}).focusout(function() {
		$(this).attr('value') == '' ? $(this).attr('value', 'Naam').removeClass('active') : $(this).attr('value');
	});
	
	$('div.contenthighlight input#hyhyuk-hyhyuk').focusin(function() {
		$(this).attr('value') == 'E-mailadres' ? $(this).attr('value', '').addClass('active') : $(this).attr('value');
	}).focusout(function() {
		$(this).attr('value') == '' ? $(this).attr('value', 'E-mailadres').removeClass('active') : $(this).attr('value');
	});
	
	
	$("a#moviepopup").click(function() {
		$.fancybox({
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'		: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
				   	 'wmode'		: 'transparent',
					 'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});

});

