(function($){
  $.fn.jTime = function(o) {
    var d = {x:'time-capa',ma:new Date(),i:0};
    var o = $.extend(d, o);
    o.ma = new Date(o.ma);
    
    var mHF = function (){
      var ma = new Date(o.ma.getTime() + o.i * 1000);
      h = ma.getHours();
      m = ma.getMinutes();
      s = ma.getSeconds(); 
	  
	  dia = ma.getDate();
	  mes = ma.getMonth()+1; 
	  anyo = ma.getFullYear();
	  if(dia<=9) dia = '0'+dia;
	  if(mes<=9) mes = '0'+mes;	  
	  
      if (h<=9) h = '0'+h;
      if (m<=9) m = '0'+m;
      if (s<=9) s = '0'+s;

	  hi = h + ':' + m + ' / ' + dia + '-' + mes + '-' + anyo;
      $('.'+o.x).html(hi); 	  
      o.i += 1;   
    }
	
    return this.each(function(){
      o.x = $(this).attr('class');
      setInterval(mHF,1000);     
    });
};
})(jQuery);

$(document).ready(function() {   
						   
	$('.fechayhora').jTime();	
	
	$(document).bind("contextmenu",function(e){
		return false;
	});
	
	
	$('.boton1 img').bind('mouseenter',function(){  
	   $('.boton1 img').attr('src','images/boton-inicio-sobre.jpg');
	});
	$('.boton1 img').bind('mouseout',function(){  
	   $('.boton1 img').attr('src','images/boton-inicio.jpg');
	});	
	
	$('.boton2 img').bind('mouseenter',function(){  
	   $('.boton2 img').attr('src','images/boton-empresa-sobre.jpg');
	});
	$('.boton2 img').bind('mouseout',function(){  
	   $('.boton2 img').attr('src','images/boton-empresa.jpg');
	});
	
	$('.boton3 img').bind('mouseenter',function(){  
	   $('.boton3 img').attr('src','images/boton-productos-sobre.jpg');
	});
	$('.boton3 img').bind('mouseout',function(){  
	   $('.boton3 img').attr('src','images/boton-productos.jpg');
	});
	
	$('.boton4 img').bind('mouseenter',function(){  
	   $('.boton4 img').attr('src','images/boton-servicio-tecnico-sobre.jpg');
	});
	$('.boton4 img').bind('mouseout',function(){  
	   $('.boton4 img').attr('src','images/boton-servicio-tecnico.jpg');
	});
	
	$('.boton5 img').bind('mouseenter',function(){  
	   $('.boton5 img').attr('src','images/boton-condiciones-de-venta-sobre.jpg');
	});
	$('.boton5 img').bind('mouseout',function(){  
	   $('.boton5 img').attr('src','images/boton-condiciones-de-venta.jpg');
	});
	
	$('.boton6 img').bind('mouseenter',function(){  
	   $('.boton6 img').attr('src','images/boton-contacto-sobre.jpg');
	});
	$('.boton6 img').bind('mouseout',function(){  
	   $('.boton6 img').attr('src','images/boton-contacto.jpg');
	});	
	
	$('.novedadesInterior img').bind('mouseenter',function(){  
	   $('.novedadesInterior img').attr('src','images/interiores/recibir-novedades-sobre.jpg');
	});
	$('.novedadesInterior img').bind('mouseout',function(){  
	   $('.novedadesInterior img').attr('src','images/interiores/recibir-novedades.jpg');
	});
	
	$('.boton1Principal img').bind('mouseenter',function(){  
	   $('.boton1Principal img').attr('src','images/btn1-transpaletas-manuales-sobre.jpg');
	});
	$('.boton1Principal img').bind('mouseout',function(){  
	   $('.boton1Principal img').attr('src','images/btn1-transpaletas-manuales.jpg');
	});	
	
	$('.boton2Principal img').bind('mouseenter',function(){  
	   $('.boton2Principal img').attr('src','images/btn2-transpaletas-electricas-sobre.jpg');
	});
	$('.boton2Principal img').bind('mouseout',function(){  
	   $('.boton2Principal img').attr('src','images/btn2-transpaletas-electricas.jpg');
	});	
	
	$('.boton3Principal img').bind('mouseenter',function(){  
	   $('.boton3Principal img').attr('src','images/btn3-apiladores-sobre.jpg');
	});
	$('.boton3Principal img').bind('mouseout',function(){  
	   $('.boton3Principal img').attr('src','images/btn3-apiladores.jpg');
	});	
	
	$('.boton4Principal img').bind('mouseenter',function(){  
	   $('.boton4Principal img').attr('src','images/btn4-carretillas-elevadoras-sobre.jpg');
	});
	$('.boton4Principal img').bind('mouseout',function(){  
	   $('.boton4Principal img').attr('src','images/btn4-carretillas-elevadoras.jpg');
	});		
	
}); 


