[jQuery] [blockUI]Showing iframe without reloding it - Problem

[jQuery] [blockUI]Showing iframe without reloding it - Problem


Hi! I have some problem with BlockUI jQuery plugin.
test.html
[code]
<html>
    <head>
    <script src="./js/jquery.min.js"></script>
    <script src="./js/jquery.blockUI.js"></script>
    <style type="text/css" media="screen">
        #page {display:none}
    </style>
    <script language="Javascript">
        jQuery(document).ready(function(){
            $('#view').click(function() {
                $.blockUI({ message: $('#page') });
setTimeout($.unblockUI, 2000);
            });
        });
    </script>
    </head>
<body>
<input id="view" type="submit" value="SHOW ME">
<iframe id="page" src="http://www.google.com"></iframe>
</body>
</html>
[/code]
When i'm running this this file (test.html) site in iframe(google.com)
is loading first time.
And when i click on SHOW ME button it is loading second time, and when
blockUI will unlock it is loading third time.
Is there any way to load this page witch is in iframe (eg. google.com)
only once?