jQuery(function($) {
	$('.art-menu a').wrapInner('<span class="t" />');
	$('.art-menu a').append('<span class="l"></span><span class="r"></span>');
	
	if ($('.greenBevel').length > 0) {
		$('.greenBevel').each(function() {
			if ($(this).text().length < 2) {
				$(this).remove();
			}
		});
	}
	
	if ($('.home').length > 0) {
		$('ul#slider').innerfade({ speed: 1000, timeout: 5000, type: 'sequence', containerheight: '307px' });
	}
	
	if ($('.blockLink').length > 0) {
		var loc = window.location;
		$('.column1').find('a[href="'+loc+'"]').addClass('current_link');

	}
	
});

