/** * @file * A JavaScript file for the theme. * * In order for this JavaScript to be loaded on pages, see the instructions in * the README.txt next to this file. */ // JavaScript should be made compatible with libraries other than jQuery by // wrapping it with an "anonymous closure". See: // - http://drupal.org/node/1446420 // - http://www.adequatelygood.com/2010/3/JavaScript-Module-Pattern-In-Depth /*(function ($, Drupal, window, document, undefined) { $(document).ready(function() { if($('#advStart').length==0){ var wWidth = $(window).width(); if(wWidth<980){ if(wWidth<700){wWidth=700;} $('#advBg').css('width', wWidth+'px'); $('#page').css('width', wWidth+'px'); $('.sidebar-first .region-sidebar-first').css('float', 'none'); $('#navigation a').css('padding', '5px 10px'); } } }); })(jQuery, Drupal, this, this.document);*/