﻿$(document).ready(function() {
    $('.Header_Tab li:first').attr('id', 'current');
    $('#tabs div').hide();
    $('#tabs div:first').show();
    $('.Header_Tab li').each(function(i) {
        $(this).mousemove(function() {
            $('.Header_Tab li').each(function() {
                $(this).removeAttr('id');
            });
            $('.Header_Tab li:first').attr('id', 'li_first');
            $(this).attr('id', 'current');
            $('#tabs div').hide();
            $('#tabs div').each(function(j) {
                if (i == j) {
                    $(this).show();
                }
            });
        });
    });
});
function submitTxt() {
    this.location = "/plus/Search.asp?SearchType=1&ClassID=0&KeyWord=" + escape($("#searchText").val()) + "&ChannelID=1";
}
function resizepic(thispic) {
    if (thispic.width > 500) { thispic.height = thispic.height * 500 / thispic.width; thispic.width = 500; }
}
function bbimg(o) {
    return false;
}