jQuery.fn.fadeToggle = function(speed, easing, callback) { 
   return this.animate({opacity: 'toggle'}, speed, easing, callback); 
}; 
$(document).ready(function(){
	$("#topMenu").hover(function(){$(".topMenuOver").fadeIn();},function(){$(".topMenuOver").fadeOut();});
	$("#topMenu li").hover(function(){
		$("#topMenu li").removeClass("over");
		$(this).toggleClass("over");
	},function(){$("#topMenu li").removeClass("over");});
});
function imprSelec(nombre,url)
{
  var ficha = document.getElementById(nombre);
  var ventimp = window.open(' ', 'popimpr');
  ventimp.document.write('<link type="text/css" rel="stylesheet" media="print" href="'+url+'" />');
    ventimp.document.write('<img src="http://www.ruedacasa.com/images/logo/ruedacasa.png" />');
  ventimp.document.write( ficha.innerHTML );
  ventimp.document.close();
  ventimp.print();
  ventimp.close();
} 
function change_color($id){
		$("#"+$id+"> a").toggleClass("captar");
}
setInterval("change_color('publicar')",500);
