/*
$(document).ready(function() {
	$("#featuresBoxContent #sideMenu").tabs();

	str = window.location.toString();
	var arr = str.split('#');
	$("#sideMenu").tabs('select', arr[1]); // switch to tab   

	$(".ajaxdialog").click(function (event) {
		event.preventDefault();
		$("#dialog").destroy;
		$("#dialogcontainer").html("<div id=\"dialog\"></div>");
		$("#dialog").load($(this).attr("href"));
		$("#dialog").dialog({
			autoOpen:false,
			bgiframe: false,
			closeOnEscape: true,
			resizable: false,
			position: 'center',
			draggable: true,
			height: 500,
			width: 650,
			title:$(this).attr("title"),
			modal: true
		});
	});
});
*/


$(document).ready(function() {    
	$("#featuresBoxContent #sideMenu").tabs();

	str = window.location.toString();
	var arr = str.split('#');
	$("#sideMenu").tabs('select', arr[1]); // switch to tab   
                               
    var $dialog = $('<div id="dialog"></div>')
        .dialog({
              autoOpen:false,
              bigframe: false,
              closeOnEscape: true,
              resizable: false,
              position: 'center',
              height: 460,
              width: 650,
              title:$(this).attr("title"),
              modal: true
        });
    
    $(".ajaxdialog").click(function (event) {
    event.preventDefault();
    $dialog.load($(this).attr("href"));
	$dialog.dialog("option","title", $(this).attr("title") );
	$dialog.dialog('open');    

    });
  
  });
