jQuery(document).ready(function() { 

    jQuery("#catNav li a.dread[title]").tooltip({
    	tip: '.textBoxOne',
    	offset: [5, 0],
    	effect: 'slide'
    });  
    
    jQuery("#catNav li a.jumbo[title]").tooltip({
    	tip: '.textBoxTwo',
    	offset: [5, 0],
    	effect: 'slide'
    }); 
    
    jQuery("#catNav li a.orchestra[title]").tooltip({
    	tip: '.textBoxThree',
    	offset: [5, 0],
    	effect: 'slide'
    });
    
    jQuery("#catNav li a.parlor[title]").tooltip({
    	tip: '.textBoxFour',
    	offset: [5, -77],
    	effect: 'slide'
    });      
    
});