jQuery(document).ready(function() {
	jQuery('#s').focus(function(){
		if (jQuery('#s').val() == "Buscar") {
			jQuery('#s').val("");
		}
	});
	jQuery('#s').blur(function(){
		if (jQuery('#s').val() == "") {
			jQuery('#s').val("Buscar");
		}
	});
	jQuery(".single a[href$='.gif'].single ,.single a[href$='.jpg'],.single a[href$='.jpg'],.single a[href$='.bmp']").lightBox();
	jQuery(".single .gallery-icon a").lightBox();
	jQuery(".home .entry a").removeAttr("href");
	jQuery(".entry a").attr('target','_blank');
	jQuery("#twitter-followers").append('<a id="twitterLink" href="http://twitter.com/hvtk" targe="_blank">@hvtk</a>')

});