/*
var img = new Object();    

img["footer_left_sel"] = new Image(20, 47);    
img["footer_left_sel"].src = "/images/new/footer_left_sel.png";

img["footer_center_sel"] = new Image(1, 47);    
img["footer_center_sel"].src = "/images/new/footer_center_sel.png";

img["footer_right_sel"] = new Image(16, 47);    
img["footer_right_sel"].src = "/images/new/footer_right_sel.png";

img["footer_left"] = new Image(20, 47);    
img["footer_left"].src = "/images/new/footer_left.png";

$(document).ready( function(){
    
    $('.footer_lnk').mouseover( function(){
        $(this).parent('td').prev('td').css('background','url('+img["footer_left_sel"].src+') no-repeat');
        $(this).parent('td').css('background','url('+img["footer_center_sel"].src+') repeat-x');
        $(this).parent('td').next('td').css('background','url('+img["footer_right_sel"].src+') no-repeat');
    } );
    
    $('.footer_lnk').mouseout( function(){
        $(this).parent('td').prev('td').css('background','');
        $(this).parent('td').css('background','');
        $(this).parent('td').next('td').css('background','');
    } );
    
} );
*/
