$(document).ready(function(){
		// ---------------------------------------------------------------------
		// Slimbox
		// ---------------------------------------------------------------------
		$('table.gallery a').slimbox({}, null, function(el) {
				return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
		});

		$('div#middle-column h2:first').addClass('first');



		var underline = $('.ciara');

		$.each(underline, function(index, item) {
			var color = $(item).css('color');
			$(item).css('borderColor', color);
		});

		$('#banners a').each(function() {
			$(this).click(function(event) {
					event.preventDefault();
					event.stopPropagation();
					window.open(this.href, '_blank');
			});
		});
});


