// Lightbox
$(document).ready(function() {

	$(".fancybox").fancybox();

	$(".popup").fancybox({
		maxWidth	: 592,
		maxHeight	: 347,
		fitToView	: false,
		width		: '592',
		height		: '347',
		autoSize	: false,
		closeClick	: false,
	});
	
	$(".popup_vote").fancybox({
		maxWidth	: 300,
		maxHeight	: 10,
		fitToView	: false,
		width		: '300',
		height		: '10',
		autoSize	: false,
		closeClick	: false,
		afterClose  : function() { location.reload(true); },
	});

});
