
	    $(function() {
	        $('.left, .right').each(function() {

	            element = $(this);

	            element.mouseover(function() {
	                $(this).css({ 'cursor': 'pointer' });
	                $(this).find('a').css({ 'text-decoration': 'underline' });
	                $(this).addClass('hovered');
	            });

	            element.mouseout(function() {
	                $(this).find('a').css({ 'text-decoration': 'none' });
	                $(this).removeClass('hovered');
	            });

	            element.click(function() {
	                var href = $(this).find('a').attr('href');
	                if ($(this).find('a').attr('target') == '_blank') {
	                    window.open(href);
	                    return false;
	                }
	                window.location.href = href;
	            });
	        });
	    });

	