$(document).ready(function() {
    $('#foot div.open_dialog').each(function() {
        var $link = $(this);
        var $dialog = $('<div></div>')
            .load($link.attr('id') + '.html')
            .dialog({
                autoOpen: false,
                title: $link.attr('title'),
                buttons:{
            		'Ok': function(){ $(this).dialog("close");}
            	},
                modal: true,
                resizable: false,
                width: 500,
                height: 650
            });

        $link.click(function() {
            $dialog.dialog('open');
            return true;
        });
    });

    $("ul.sf-menu").supersubs({ 
        minWidth:    12,   // minimum width of sub-menus in em units 
        maxWidth:    27,   // maximum width of sub-menus in em units 
        extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                           // due to slight rounding differences and font-family 
    }).superfish({
    	speed: 600,
        delay: 1000,
        disableHI:     true
    }); 
    
});

