﻿// JavaScript Document
$(document).ready(function() {
	 $('div.news-box').hover(function() {$(this).addClass('news-hover');	},function() {$(this).removeClass('news-hover');});
	 $('div.center-box').hover(function() {$(this).addClass('center-box-hover');	},function() {$(this).removeClass('center-box-hover');});
 }); 