$(document).ready(function() {
    //vip slide begin
    $('#vip_box').jcarousel();
    
    //taber begin
    var tabContainers = $('div.news_tabs > div');
    $('div.box_top_650 a').click(function () {
        tabContainers.hide().filter(this.hash).show();   
        $('div.box_top_650 a').removeClass('selected');
        $(this).addClass('selected');    
        return false;
    }).filter(':first').click();
	
    var tabContainersa = $('div.menufield > div');
    $('div.menumap a').click(function () {
        tabContainersa.hide().filter(this.hash).show();  
        $('div.menumap a').removeClass('selected');
        $(this).addClass('selected');    
        return false;
    }).filter(':first').click();
    
});