var home = {
    init: function() {
        $('.homeCol').each(function() {
            var vHref = $(this).attr('title');
            $(this).removeAttr('title');
            $(this).mouseover(function() {
                $(this).addClass('hover');
            })
            $(this).mouseout(function() {
                $(this).removeClass('hover');
            })
            $(this).click(function() {
                $(location).attr('href', vHref);
            });
        });
        $('.readMore').removeAttr('href');
    }
};

$(document).ready(function() {home.init();});