$(function(){

// menu tusnami
	$('#categories ul > li').each(function(){
		
		var clase = $(this).find('a').text().toLowerCase();
		$(this).addClass(clase);
		
		$(this).hover(
			function(){
				$(this).animate({marginLeft: 90, 'opacity': 0.7}, 300);
			},
			function(){
				$(this).animate({marginLeft: 0, 'opacity': 0.3}, 100);
			}
		)
	});
	
	$('#categories ul').hover(
		function(){
			$(this).prev().animate({marginLeft: 110, 'opacity': 1}, 300);
		},
		function(){
			$(this).prev().animate({marginLeft: 30, 'opacity': 0.5}, 100)
		}
	);
	
	
// sacar links de imgs
	$('.home .post img, .category .post img').each(function(){
		var enlace = $(this).parent().parent().parent().prev().find('a').attr('href');
		$(this).parent().attr('href',enlace).removeAttr('target');
	});

	
})