$(document).ready(function(){
	$('img[hspace]').each(function(){
		$(this).css('marginLeft', '10px') .css('marginRight','10px').removeAttr('hspace');
	});

	$('img[vspace]').each(function(){
		$(this).css('marginBottom','10px').removeAttr('vspace');
	});
	
	$('#column-left a').each(function(){
		if($(this).attr('rel')==currentcat){
			$(this).addClass('currentlink');
		}
	})

})
