// JavaScript Document
$(document).ready(function(){
		$(".menu_1_buttom").bind("mouseover", function(){
			$(this).addClass("show_menu_2");
		});
		$(".menu_1_buttom").bind("mouseleave", function(){
			$(this).removeClass("show_menu_2");
		});
		//var index_height = $("#content_page_container").height();
		//$(".content").height(index_height);
		
		if(jQuery.browser.msie) {
			if(parseInt(jQuery.browser.version) == 6) {
				$(".menu_1_buttom").unbind("mouseover");
			}
		}
		
		//$("#nav_1 li").wrap("<div class='bb_bt_center'><div class='bb_bt_left'><div class='bb_bt_righnt'></div></div></div>");
});