// jquery config
/*
$(document).ready(function(){
	$(".box_top_col").mouseover(function(){
		$(this).addClass("box_top_over");
	}).mouseout(function(){
		$(this).removeClass("box_top_over");
	});
});
*/