$(document).ready(function() {                  
        /*PRODUCT BUBBLE*/
        $('.product').mouseover(function() {        
                $(this).addClass('productActive');
                return false;
        });         
        $('.product').mouseout(function() {        
                $(this).removeClass('productActive');
                return false;
        }); 

        /*HP VIDEO*/
        $('.video').mouseover(function() {        
                $(this).addClass('videoHover');
                return false;
        }); 
        $('.video').mouseout(function() {        
                $(this).removeClass('videoHover');
                return false;
        });   
        $('.video').click(function() {        
                $(this).addClass('hide');
                $('.videoFlash').removeClass('hide');
                return false;
        });                  
        
        /*HP BUBBLES*/
        $('ul.hplist a.link').mouseover(function() {
                $('.bubble').addClass('hide');
                $(this).next('.bubble').removeClass('hide');
                return false;
        }); 
        $('ul.hplist a.link').mouseout(function() {
                $('.bubble').addClass('hide');
                return false;
        });  
        
        $("#photo-toolbar").after('<div class="clr"></div>');                                            
});

