$(function(){

    $("div.blogEntry").hover(function(){
    
        $("div:first-child", this).addClass("hover");
        $("div.arrow", this).addClass("arrowHover");
        
        $(this).click(function() {
        	
        	window.location = $("a:last", this).attr("href");
        });

    }, function(){
    
    	$("div:first-child", this).removeClass("hover");
        $("div.arrow", this).removeClass("arrowHover");
    
    });

});
