// JavaScript Document
$(document).ready(function () {
	
	$("input.submit").click(
	function (){
		$.ajax({
					type: "POST",
					url: "/scripts/send.php",
					data:$('.zayavka').serialize(),
					success: function(data){
					document.forms.zayavka.reset();
					$("#msg").html(data);}
		});	
	});

	
		$("#aa div").hover( function() { 
		rwidth=$(this).width(); 
		maxwidth=262;
		
		$(this).animate({
  			width: maxwidth
		}, 800);
	},function() {
		
		$(this).animate({
  			width:"200px"
		}, 600);
	
	} );
		
		$("#a3").hover( function() { 
		rwidth=$(this).width();
		rwidth2=$("#a2").width();
		maxwidth=262;
				
		$(this).animate({
  			width: maxwidth
		}, 800);
		$("#a2").animate({
  			width:"120px"
		}, 800);
	},function() {
		
		$(this).animate({
  			width: rwidth
		}, 600);
		$("#a2").animate({
  			width:"200px"
		}, 600);
	
	} );

});	
