// JavaScript Document
$(function() {
// do something on document ready
$('.col').hover(function() {
	$(this).addClass('box-hover');
	}, function() {
	$(this).removeClass('box-hover');
	});
});
