$(document).ready(function(){
						   
$('#butContact').mouseover(function(){
		$(this).hide();
		$(this).css('background-position','50% -29px');
		$(this).fadeIn('normal');
	});

$('#butContact').mouseout(function(){
		$(this).hide();
		$(this).css('background-position','50% 0');
		$(this).fadeIn('normal');
	});
						   
// PRETTY PHOTO INIT
$("a[rel^='prettyPhoto']").prettyPhoto();						 

});

function Cargar(enlace,capa,param){
		$.ajax({
				url: enlace,
				dataType: "html",
				data: param,
				beforeSend: function (){
					capa.html("<img src='/php/ajax-loader.gif' alt='Cargando'>");
				},
				error: function (objeto, quepaso, otroobjeto) {
					capa.html("<h4>Error al cargar el contenido. " + quepaso + "</h4>");
				},
				success: function (data,estado,XMLData) {
					capa.html(data);
				}
		});
}
