/**
 * New home js
 * 
 * -=========Write less, Do more,it's jQuery-=================
 * 	
 * 
 * @author nightsailer<nightsailer.hibeauty.cn>
 * @version v0.1b200701
 */
 
/**
 * So easy here
 */ 
function int_home(){
    $('.box_header_style01 td ul li a').hover(
    	function(){
    		$(this.parentNode).siblings(".tab_here").removeClass().end('tab_here').addClass('tab_here');
			$(this.hash).siblings('.content').hide().end().show();
    	},
    	function(){}
    );
}

function int_home2(){
    $('.box_header_style02 td ul li a').hover(
    	function(){
    		$(this.parentNode).siblings(".tab_here").removeClass().end('tab_here').addClass('tab_here');
			$(this.hash).siblings('.content1').hide().end().show();
    	},
    	function(){}
    );
}

$(document).ready(int_home);
$(document).ready(int_home2);
