// JavaScript Document
     $(document).ready(function(){								

		$("#index_brand_2,#index_brand_3,.brand_a,.brand_b_this,.brand_c_this").hide();


        $(".brand_b").mousemove(function (){
           $(".brand_b_this").show();
		   $("#index_brand_2").fadeIn(0);
		   $("#index_brand_1,#index_brand_3,.brand_b,.brand_a_this,.brand_c_this").hide();
		   $(".brand_c,.brand_a,").show();
        })
		
		 $(".brand_c").mousemove(function (){
		   $(".brand_c_this").show();
		   $("#index_brand_3").fadeIn(0);
		   $("#index_brand_1,#index_brand_2,.brand_c,.brand_a_this,.brand_b_this").hide();
		   $(".brand_b,.brand_a,").show();
        })
		 
		  $(".brand_a").mousemove(function (){
           $(".brand_a_this").show();
		   $("#index_brand_1").fadeIn(0);
		   $("#index_brand_2,#index_brand_3,.brand_a,.brand_b_this,.brand_c_this").hide();
		   $(".brand_c,.brand_b,").show();
        })


         $(".news_box").mouseover(function (){
           $(this).css({"background-color": "#F1FFD7"} );
        })
		 $(".news_box").mouseout(function (){
           $(this).css({"background-color": "#FFF"} );
        })
		
		
     })
