 $(document).ready(function() {
			// $('#vivDemo').css('height', $(window).height());
			
            $('#divDemo').show();
			$('#popuphide').show();
            $('.show').click(function() {
                $('#divDemo').fadeIn("slow");
				$('#popuphide').fadeIn("slow");
            });
			$('.hide34').click(function() {
				$('#divDemo').fadeOut("slow");
				$('#popuphide').fadeOut("slow");
			});
        });
		
		function aaa(){
			$('#divDemo').fadeIn("slow");
		}
		
	
