/**
 * @author penpen
 */
jQuery(function(){
	jQuery(".nav-btn").hover(function(){
		var show = jQuery(this).attr("show");
		jQuery(this).css("background-position","0px -45px");
		jQuery("."+show).show();
	},function(){
		var show = jQuery(this).attr("show");
		jQuery(this).css("background-position","0px 0px");
		jQuery("."+show).hide();
	});
	jQuery("#box_1_1_bottom_link a").hover(function(){
		jQuery(this).css("background-position","0px -23px");
		jQuery(this).siblings().css("background-position","0px 0px");
		var num = jQuery(this).index()+1;
		jQuery("#bottom_"+num).show();
		jQuery("#bottom_"+num).siblings().hide();
	});
});

