
jQuery(document).ready(function() {
   
	 jQuery('.fo_tabs li').mouseover(function(){
    	$(this).addClass("fo_tab_hover");
		$(this).css("cursor","pointer");
    });
	jQuery('.fo_tabs li').mouseout(function(){
    	$(this).removeClass("fo_tab_hover");
		$(this).css("cursor","normal");
    });
	jQuery('.fo_tabs li').click(function(){
		jQuery('.fo_tabs_show').removeClass("fo_tabs_show");
		var toshow = $(this).attr("rel");
		jQuery('#'+toshow).addClass("fo_tabs_show");
    	jQuery('.fo_tabs li.fo_tab_activ').removeClass("fo_tab_activ");
		$(this).addClass("fo_tab_activ");
    });
	 jQuery('.fo_c_block').mouseover(function(){
    	$(this).addClass("fo_c_block_hover");
		$(this).css("cursor","pointer");
    });
	jQuery('.fo_c_block').mouseout(function(){
    	$(this).removeClass("fo_c_block_hover");
		$(this).css("cursor","normal");
    });
	jQuery('.fo_c_block').click(function(){
		$(this).children("a").click();
    	$(this).removeClass("fo_c_block_hover");
		$(this).css("cursor","normal");
    });
    
});
