$(document).ready(function() {
	$(".fancyboxform").fancybox({
		'overlayOpacity'	: 0.7,
		'overlayColor'		: '#000',
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	$(".fancyboxformcomment").fancybox({
		'overlayOpacity'	: 0.7,
		'overlayColor'		: '#000',
		'width'				: '50%',
		'height'			: '50%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	$("a.copylink").click(function(){
		$(this).parent().next("div.copy").show();
	});
	$("div.copy input").click(function(){
		$(this).focus();
		$(this).select();
	});
});
