//Cufon (:
//Cufon.replace('h2.post_title', { textShadow:'#fff 1px 1px'});
//Cufon.replace('a h2');

 
// Lazy Loading
$(function() {
		
	/* $('body').jwAnnounce({
		siteWidth : '980px',
		className : 'notice',
		text : '<p>Estoy ajustando algunas cosas, disculpa por los errores que se puedan presentar...</p>'
	});
	*/
	
   
	//imagenes dentro del post
	
   /*$("img").lazyload({
      placeholder : "http://dl.dropbox.com/u/4522454/blank.png",
      threshold : 200,
      effect : "fadeIn"
	});
   */
	
	//imagen de los post en la portada
	/*$(".post_image img").lazyload({
      placeholder : "http://dl.dropbox.com/u/4522454/blank.png",
      threshold : 200,
      effect : "fadeIn"
 	});*/
 	//menu navcat
 	$("#navcat li").hover(function() {
		$(this).children().fadeIn('slow');
	}, function() {
		$('ul',this).fadeOut('slow');
	});
	//Search
	$(".srch").hover(function(){
		$(this).css({background:"#dedede",color:"#111"})
	}, function(){
		$(this).css({background: "#111",color:"#fff"})
	});
	
});

