$().ready(function() {

         $(".box").bind("mouseenter",function(){
             $(this).addClass('on');
             //$('img', this).hide();
             //$(".content", this).show();
         });
         $(".box").bind("mouseleave",function(){
             $(this).removeClass('on');
             //$('.content', this).hide();
             //$("img", this).show();
         });
		 
		 /*
		 $(".box .interview").bind("mouseenter",function(){
			 $('img', this).hide();
         });
         $(".box .interview").bind("mouseleave",function(){
             $("img", this).show();
         });
		 */
         
         $(".box .article").bind("mouseenter",function(){
             $(this).addClass('on');
		 });
         $(".box .article").bind("mouseleave",function(){
             $(this).removeClass('on');
         });
		
});