﻿function tab_action(ptab,pcontent,pclass)
{
    $(ptab).children().mouseover(function(){
        var tab=$(this);
        tab_index=tab.prevAll().length;
        $(ptab).children().removeClass(pclass);
        tab.addClass(pclass);

        $(pcontent).children().hide();
        $(pcontent).children().eq(tab_index).show();
    });

}

//window Load function
$(function(){
    $('#search_submit').click(function(){
        $('#search_top_form').submit();
        return false;
    });
    tab_action('#tab1','#content1','s1');
});
