$(document).ready(function(){
	var $ = jQuery;
	$('[href]')
		.css({cursor: 'pointer'})
		.click(function(e){
			var href = $(this).attr('href');
			if(e.metaKey){
			 	window.open(href);
			}else{
			 	window.location = href;
			}
			return false;
		});
		
	$('.out')
		.css({cursor: 'pointer'})
		.mouseenter(function(){
			$(this).addClass('over');
			$(this).removeClass('out');
		})
		.mouseleave(function(){
			$(this).removeClass('over');
			$(this).addClass('out');
		});
});

