$(document).ready(function(){
	
	$('#ToS').dialog({ autoOpen: false,
		resizable: false,
		position: 'center',
		modal: true,
		height: 700,
		width: 700});
	
	$('#privacy').dialog({ autoOpen: false,
		resizable: false,
		position: 'center',
		modal: true,
		height: 700,
		width: 700});

	$('#registery').dialog({ autoOpen: false,
		resizable: false,
		position: 'center',
		modal: true,
		height: 700,
		width: 700});
	
	$('.tosLink').click(function(){
		$('#ToS').dialog('open');
		return false;
	});
	
	$('.privacyLink').click(function(){
		$('#privacy').dialog('open');
		return false;
	});
	
	$('.registeryLink').click(function(){
		$('#registery').dialog('open');
		return false;
	});
	
	$('.close').click(function(){
		$($(this).attr('href')).dialog('close');
		return false;
	});
	
})


