$(function() { 

  $("#containeradmin input[type=submit],#containeradmin input[type=button]").hover(function(){
	if ($(this).css("background-color") == 'rgb(91, 91, 91)') {
		$(this).css("background-color", "#ACACAC");
		$(this).css("color", "#FFFFFF");
	}
	else {
		$(this).css("border", "inset 1px #EEEEEE");
	}
  },function(){
  	if ($(this).css("background-color") == 'rgb(172, 172, 172)') {
		$(this).css("background-color", "#5B5B5B");
		$(this).css("color", "#FFFFFF");
	}
	else	{
		$(this).css("border", "outset 1px #EEEEEE");
	}
  });
 
	/*$("#imagen").jqUploader({
		background:	"FFFFDF",
		barColor:	"FF0000",
		allowedExt:     "*.avi; *.jpg; *.jpeg; *.png",
		allowedExtDescr: "Images and movies (*.avi; *.jpg; *.jpeg; *.png)"
	});*/
	
	$("#buscar input[type=text]").focus(function() {
		if ($(this).val()=='Buscar')
			$(this).val('');
	});
	
	$(".listado tr").hover(function() {
		$(this).children("td").css("background-color","#F6F6F6");
	},function() {
		$(this).children("td").css("background-color","transparent");
	});
	
});


<!--
function add() {
if (window.sidebar&&window.sidebar.addPanel)
window.sidebar.addPanel("21rs | La revista cristiana de hoy","http://www.21rs.es","");
else
window.external.AddFavorite("http://www.21rs.es","21rs | La revista cristiana de hoy");
}
//-->
