$(function() {
    $('.homebox').hover(function() {
            var href = $("a", this).attr("href");
            if (!href.match(/#$/)) {
                $(this).addClass('boxhover');
            }
		}, function() {
			$(this).removeClass('boxhover');
		}).click(function() {
            var href = $("a", this).attr("href");
            if (!href.match(/#$/)) {
                window.location=href;
            }
            return false;
		});
}); 

