$(document).ready(function(){
	
	$('.url').click(function (event) {
		event.preventDefault();
		window.location.href = $(this).children('a').attr('href');
	});
	
});
