$(document).ready(function() {
	$('.release, .hp-release, .hp-event').click(function(e){
		e.preventDefault();
		window.location = $(this).children('a').attr('href');
	});
	$('.release, .hp-release, .hp-event').hover(function(){
			$(this).children('.text').stop(true, true).fadeIn(200);
		}, function(){
			$(this).children('.text').stop(true, true).fadeOut(200);
	});
});
