    $(function () {
        $('input[type=text], input[type=email], textarea').validator();


		$('.contact_expand').click(function () {
            $('.contact_container').slideUp('fast');
			$('.contact_expand').removeClass('on');
            if ($('.contact_container').is(':hidden') == true) {
                $('.contact_expand').addClass('on');
                $('.contact_container').slideDown('fast');
            }
			return false
        });
		$('.contact_footer, .contact3, .contact4').click(function () {
			$('html, body').animate({scrollTop:0}, 400);
            if ($('.contact_container').is(':hidden') == true) {
                $('.contact_expand').addClass('on');
                $('.contact_container').delay(400).slideDown('fast');
            }
			return false
        });
        $('.contact_container').hide();



				$('img.notinview').bind('appear', function(a, b) {
					//console.log('appear ' + b.width);
					
					//$(this).attr('src', $(this).attr('orig'));
					//console.log($(this).offset().left);
					
//					console.log($(this).offset().left + ' ' + b.width);
					if ($(this).offset().left < b.width) {
						$(this).removeClass('notinview');
						$(this).attr('src', $(this).attr('orig'));
					}
				});


    });
