$(document).ready(function() {
//setting up the modal window attributes
	$('.profileDataDialog').dialog({
	bgiframe: true,
	autoOpen: false,
	width: 525,
	modal: true,
	resizable: false,
	position: 'center',
	closeOnEscape: true
});

$('.openModalProfile').click(function() {
// grabs url from href and loads it into the modal window
	var urlContent = $(this).attr('href');
	$('.profileDataDialog').dialog('close').load(urlContent,function(){
	$('.profileDataDialog').dialog('open');
	});
	return false;
});


});