// ugly hacks to get as close to the design as possible
$('document').ready(function(){
    //hack the iframe
//    if (top.location!= self.location) {
//        top.location = self.location.href
//    }

    var navig = $('#navig');
    var items = navig.children('li');
    var separators = items.filter(':not(:has(a))');
    var total = 0;
    items.each(function(){
        total += $(this).width();
    });
    var spacing = parseInt((navig.width() - total) / (items.length - 1));
    separators.each(function(){
        $(this).css('margin-left', spacing).css('margin-right', spacing);
    });
});

