$(document).ready(function() {
	$('.popup').fancybox({
		padding: 8,
		overlayColor: '#000',
		overlayOpacity: 0.55,
		frameWidth: 794,
		frameHeight: 454,
		showCloseButton: false,
		hideOnContentClick: false
	});
	$('.checkbox label').each(function () {
		var checkbox = $(this).find('input');
		if (checkbox.attr('checked'))
			$(this).addClass('checked');
		else
			$(this).removeClass('checked');
	});
	$('.checkbox label input').focus(function () {
		$(this).parent().css('outline', '1px dotted');
	});
	$('.checkbox label input').blur(function () {
		$(this).parent().css('outline', 'none');
	});
	$('.checkbox label input').change(function () {
		if ($(this).attr('checked'))
			$(this).parent().addClass('checked');
		else
			$(this).parent().removeClass('checked');
	});
	$('.checkbox label input').click(function () {
		if ($(this).attr('checked'))
			$(this).parent().addClass('checked');
		else
			$(this).parent().removeClass('checked');
	});
	$('.invite-form .input input').each(function () {
		$(this).data('defaultText', 'Ystävän sähköpostiosoite');
	}).each(changeInputText).blur(changeInputText).focus(changeInputText);
});