$(document).ready(function() { 

	$('#PackDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 500,
		minHeight: 200
	});
	
	$('#Pack').click(function(){
		$('#PackDialog').css("visibility", "visible");
		$('#PackDialog').dialog("open");
	});

	$('#ResponseDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 500,
		minHeight: 200
	});
	
	$('#Response').click(function(){
		$('#ResponseDialog').css("visibility", "visible");
		$('#ResponseDialog').dialog("open");
	});
	
	$('#OnlineDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 500,
		minHeight: 200
	});
	
	$('#Online').click(function(){
		$('#OnlineDialog').css("visibility", "visible");
		$('#OnlineDialog').dialog("open");
	});

	$('#OrderDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 600,
		minHeight: 200
	});
	
	$('#Order').click(function(){
		$('#OrderDialog').css("visibility", "visible");
		$('#OrderDialog').dialog("open");
	});

	$('#BudgetDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 800,
		minHeight: 200
	});
	
	$('#Budget').click(function(){
		$('#BudgetDialog').css("visibility", "visible");
		$('#BudgetDialog').dialog("open");
	});

	$('#EventDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 600,
		minHeight: 200
	});
	
	$('#Event').click(function(){
		$('#EventDialog').css("visibility", "visible");
		$('#EventDialog').dialog("open");
	});
	
	$('#CustomerDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 500,
		minHeight: 200
	});
	
	$('#Customer').click(function(){
		$('#CustomerDialog').css("visibility", "visible");
		$('#CustomerDialog').dialog("open");
	});
	
	$('#MotivationalDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 650,
		minHeight: 200
	});
	
	$('#Motivational').click(function(){
		$('#MotivationalDialog').css("visibility", "visible");
		$('#MotivationalDialog').dialog("open");
	});
	
	$('#SourcingDialog').dialog({
		autoOpen: false,
		position: 'center',
		modal: true,
		width: 600,
		minHeight: 200
	});
	
	$('#Sourcing').click(function(){
		$('#SourcingDialog').css("visibility", "visible");
		$('#SourcingDialog').dialog("open");
	});


});	

