$(document).ready(function(){
	
	//form de contacto
	$("#fContacto").validate({ 
								
      rules: { 
         nombre: { 
            required: true 
         }, 
         email: { 
            required: true,
			email: true
         },
		 telefono: { 
            required: true
         },
		 consulta: { 
            required: true
         } 
 
      }            
   });
	
	
	$('.more').live("click",function(){
									 
		var ID = $(this).attr("id");
		
		if(ID){
			
			$("#more"+ID).html('<img src="imagenes/ajax-loader.gif" />');
	 
			$.ajax({
				type: "POST",
				url: "ajax_more.php",
				data: "lastNoticia="+ ID,
				cache: false,
				success: function(html){
								$("ol#updates").append(html);
								$("#more"+ID).remove(); // removing old more button
						}
			});
		
		}else{
			
			$(".morebox").html('No hay mas Noticias');// no results
		
		}
	 
		return false;
	});


});
