$(document).ready(function(){
	if(document.getElementById('box-1') || document.getElementById('box-2') || document.getElementById('box-3') || document.getElementById('box-4')) {
	$('#box-1, #box-2, #box-3, #box-4').each(function() {
		$(this).hover(function() {
			$(this).addClass("box-active");
		},
		function() {
			$(this).removeClass("box-active");
		});
	});
	}
	  
});

