$(document).ready(function(){
				$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:1});
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:200});
				}, function() {
					$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:350});
				});	
				jQuery(function( $ ){
					$.localScroll();
				});
				
				
				$("#ajax-contact-form").submit(function(){
					var str = $(this).serialize();
					
					   $.ajax({
					   type: "POST",
					   url: "contacto.php",
					   data: str,
					   success: function(msg){
						
							$("#note").ajaxComplete(function(event, request, settings){
						
								if(msg == 'OK'){ // Message Sent? Show the 'Thank You' message and hide the form
								   result = '<div class="notificacion_ok">Tu mensaje ha sido enviado, nos pondremos en contacto contigo. Gracias!</div>';
								  $('#nombre').val('');
								  $('#empresa').val('');
								  $('#email').val('');
								  $('#tel').val('');
								  $('#pagina').val('');
								  $('#mensaje').val('');

								   
								}else{ result = msg;}
						
								$(this).html(result);
						
							});
						
						}
						
						});					
					
									
				return false;
				});
				
				
			});