$(document).ready(function(){

/*	if ($('body').hasClass('cargado')) {

	} else {
	
	   $(".abrircesta").click(function(evento){
		evento.preventDefault();
		
			if ($('.cesta').hasClass('cesta-abierta')) {

				$(".cesta-bloque").load("http://www.cheleton.com/inicio/tienda/cesta/?tpl=bloque");
			} else {

				$(".cesta-ajax").load("http://www.cheleton.com/inicio/tienda/cesta/");
			}	
		
		$(".cesta").toggleClass('cesta-abierta');	 
		
		$(".abrircesta span").toggle();
		
	   });  
	}
	
	
	$(".accionescesta").click(function(evento2){
		evento2.preventDefault();	
		
		carga = $(this).attr('href');

		$(".cesta-ajax").load(carga);
	});

	$("body").addClass('cargado');  	
   */
   
   
   $('.mini-busqueda .input').each(function() {

       var default_value = this.value;

       $(this).focus(function(){
               if(this.value == default_value) {
                       this.value = '';
               }
       });

       $(this).blur(function(){
               if(this.value == '') {
                       this.value = default_value;
               }
       });

});
   
   
});
