$(function() {
	$('.inviteLink').click(function() {
		var seriesId = $(this).attr('seriesId');
		
		var hash = Math.floor(Math.random()*50+1);
		
		$('#hiddenDiv').load('/series/evite/' + seriesId + '/' + hash + ' #eviteForm', function(responseText, textStatus, XMLHttpRequest) {
			new Boxy($('#hiddenDiv').html(), {title: 'evite', modal:true});
		});
	});
});