/**
 * Local menu control. zihong 2008/05/01.
 */
function local_menus_create() {
    if ($('#content-body .tabs .primary').size() <= 0) {
        return;
    }
    
    var left_w = 0;
    if ($('#Fleft').size() > 0) {
        left_w = $('#Fleft').width();
    }
    var cent_w = $('#Fcenter').width();
    var left_m = 0;
    if ($('#Fcontainer').size() > 0) {
        left_m = $('#Fcontainer').offset().left;
    }
    
    var max_w = left_m + left_w + cent_w;
    
    var moremenu = $('<div id="local-menu-pop"></div>');
    moremenu.css('position', 'absolute');
    moremenu.css('display', 'none');
    moremenu.css('z-index', 99);
    
    var offright = 100;
    if ($.browser.msie) {
        offright = 130;
    }
    $('#content-body .tabs .primary li').each(function(){
        if ($(this).offset().left + $(this).width() > max_w - offright) {
            moremenu.append( $(this).clone().addClass('local-menu-pop-item') );
            $(this).addClass("local-menu-delete");
        }
    });
    
    if ( moremenu.children().size() <= 0 ) {
        return;
    }
    
    $('#content-body .tabs .primary li.local-menu-delete').remove();
    $('body').append( moremenu );
    
	var morebtn = $('<li id="local-menu-button" title="点击查看隐藏标签">更多↓</li>');
	$('#content-body .tabs .primary').append( morebtn );
	
	$('#local-menu-button').click(function(){
	    if ($('#local-menu-pop').css('display') == 'none') {
	        var doc_w = $(document).width();
	        var mypos = $(this).offset();
            var pop_top = mypos.top + $(this).height();
            
            var of_left = mypos.left;
            if (of_left + $('#local-menu-pop').width() > doc_w) {
                of_left = mypos.left + $(this).width() - $('#local-menu-pop').width() + 20;
            }
            
            $('#local-menu-pop').css('top', pop_top+10+'px');
            $('#local-menu-pop').css('left', of_left+'px');
	        $('#local-menu-pop').show('fast');
	    } else {
	        $('#local-menu-pop').hide('normal');
	    }
	});
}

function zx_adjust_images() {
    if (!checkImagesReady()) {
        window.setTimeout( "zx_adjust_images()", 500 );
        return;
    }
    
    // datoutie templates page.
    if ($('#Fcenter .clear-block ul.images').size() > 0) {
        return;
    }
    
    var left_w = 0;
    var left_ofl = 0;
    if ($('#Fleft').size() > 0) {
        left_w = $('#Fleft').width();
        left_ofl = $('#Fleft').offset().left;
    } else {
        left_ofl = $('#Fcenter').offset().left;
    }
    var right_w = 0;
    if ($('#Fright').size() > 0) {
        right_w = $('#Fright').width();
    }
    
    var cent_w = 1000 - right_w - left_w - 50; // - padding.
    
    $('#content-body .clear-block img').filter(function(){
        if ($(this).parents('.meta').size() > 0) {
            return false;
        } else if ($(this).parents('.gmap').size() > 0) { // In GMap div.
            return false;
        }else {
            return true;
        }
    }).each(function() {
        var off_left = $(this).offset().left;
        var img_w = $(this).width();
        var img_h = $(this).height();
        var img_r = off_left + img_w;
        
        if (img_r > left_ofl + left_w + cent_w) {
            $(this).width( left_w + cent_w + left_ofl - off_left );
            $(this).wrap('<a title="点击查看原图" style="padding:0; margin:0" href="'+$(this).attr('src')+'"></a>');
        }
    });
    
    if (typeof(ajust_col_size) == 'function') {
        ajust_col_size();
    }
}

// Check all image readyState.
function checkImagesReady() {
    var allready = true;
    $('#content-body .clear-block img').each(function(){
        if ($.browser.msie) {
            if (this.readyState != "complete") {
                allready = false;
            }
        } else {
            if (!this.complete) {
                allready = false;
            }
        }
    });
    
    return allready;
}

$(document).ready(function(){
    if (typeof(isfmuser) == 'undefined' || !isfmuser) {
        local_menus_create();
    }
    zx_adjust_images();
});
