
 $(document).ready(function(){

         /* LP: make clicking the <p> text in homePromo items same as clicking the header, by req. */
         $('#homePromoW div.hptext').bind('click', function(e) {
             document.location = $(this).find('h2 > a').attr('href');
         });

         $('#homePromoW li').hover(function(e) {
                                     $(this).find('h2' ).addClass('hover');
                                   },
                                   function(e) {
                                     $(this).find('h2' ).removeClass('hover');
                                   });

 });

