$(document).ready(function(){ 

	// Bocadillos
	$('.bocadillo').append('<span class="flechita"></span>');
	
	// Destacada
	/*
	if ($('.wp-post-image').length ) {

		grayscale( $('.wp-post-image') );	
		$('.wp-post-image').hover(function() {
			grayscale.reset( $(this) );	
		}, function() {
			grayscale( $(this) );
		});
	
	}
	*/
	
	// Thumbs
	$(".gray img").fadeTo("fast", 0.4);
	$('.gray img').hover(function(){
		$(this).fadeTo("fast", 1.0);
	}, function(){  
		$(this).fadeTo("fast", 0.4);
	});



});  
