Your IP : 172.69.7.234


Current Path : /var/www/element/data/www/pressme.ru/js/
Upload File :
Current File : /var/www/element/data/www/pressme.ru/js/common.js

$(document).ready(function(){
	
	$(window).resize(function(){
		checkW();
	});
	checkW();
	setTimeout(function(){
		checkW();
	},300);
});

function checkW(){
	
	var w = $(window).width();
	if(w<1123){
		$('#wrapper').css({'overflow-x':'hidden','width':w});
	}
};


$(document).ready(function(){

	$('#contactform').submit(function(){

		var action = $(this).attr('action');

		$("#message").slideUp(750,function() {
		$('#message').hide();

 		$('#submit')
			
			.attr('disabled','disabled');

		$.post(action, {
			name: $('#name').val(),
			email: $('#email').val(),
			phone: $('#phone').val(),
			comments: $('#comments').val()
		},
			function(data){
				document.getElementById('message').innerHTML = data;
				$('#message').slideDown('slow');
				$('#contactform img.loader').fadeOut('slow',function(){$(this).remove()});
				$('#submit').removeAttr('disabled');
				if(data.match('success') != null) $('#contactform').slideUp('slow');

			}
		);

		});

		return false;

	});
});

$(function(){
	//document.getElementById("all").click();
	 $("#email").after('<input name="phone" type="text" id="phone" size="30" onfocus="if(this.value == \'Телефон\') { this.value = \'\'; }" onblur="if(this.value == \'\') { this.value = \'Телефон\'; }" value="Телефон" >');
});

$(function(){
	
	$('#email').show();
});