Site.Types.Link = {
	apply: function( tag ) {
		$(tag).css('cursor','pointer');
		$(tag).mouseover( function() { $(this).addClass('over'); } );
		$(tag).mouseout( function() { $(this).removeClass('over'); } );
		$(tag).click( function() { window.location.href = $(this).attr("href");; } );
	}
};
