var active;

jQuery(document).ready(function($){
			
	//jquery corner objects
	$('#sidebar h2').corner('3px');
	$('#sponsors h2').corner('top 5px');
	$('#bloggers_list li').corner('4px');
	$('#navigation').corner('4px');
	// ----------------------
	
	//Lägg till rel="fancybox" på alla postimages
	$('.entry').find('img').parent('a').each(function() {		
		$(this).attr('rel', 'fancybox');		
		var src = $(this).children().eq('0').attr('src');
		$(this).attr('href', src);
		
	});
	
	//Fancybox activation
	$('a[rel="fancybox"]').fancybox();
	
	$('#navigation ul li a').click(function() {
		active = $(this);		
		$('#navigation ul li a').removeClass('active');
		$(this).addClass('active');
	});
	
	//Ta bort comment author
	$('.commentlist span.says').each(function() {
		$(this).text('');
		$(this).replaceWith($(this).html());
	});	
	
	// Gör om bilder från inlägg till "annat-format"
	// ta bort länkar
	/*
	$('.wp-caption a').each(function(){
		$(this).replaceWith($(this).html());
	});
	*/
	// byt klassnamn
	/*
	$('.wp-caption').each(function(){
		$(this).replaceWith("<div class='image_top vertical_bottom_text'>" + $(this).html() + "</div>");
	});
	*/
	// byt taggar
	/*
	$('.wp-caption-text').each(function(){
		$(this).replaceWith("<div><span>" + $(this).html() + "</span></div>");
	});
	
	$('.news_text').each(function(){
		$(this).find('div').replaceWith('<p>' + $(this).find('h2').html() + '</p>');
	});
	*/	
});