Automatic installer.php lang files by installer_builder (20070726)
[moodle-linuxchix.git] / theme / custom_corners / js / jquery.php
blob14945bb2cc71b4f1ae67fdedfbb71216e36331e4
1 <script src="<?php echo $CFG->themewww .'/'. current_theme() ?>/js/jquery-latest.pack.js" type="text/javascript"></script>
3 <script type="text/javascript">
4 $(document).ready(function() {
5 init();
6 });
8 var init = function() {
9 window.setTimeout(function(){$('#infowrapper').click();}, 4000);
10 $('#infowrapper').toggle(function() {
11 $('#infooverlay').animate({height: 'toggle'}, "fast");
12 $(this).animate({opacity: 0.3}, "fast");
13 }, function() {
14 $('#infooverlay').animate({height: 'toggle'}, "fast");
15 $(this).animate({opacity: 0.9}, "fast");
16 });
18 </script>