﻿$(document).ready(function() {
    $('.acc_category_heading').mouseover(function(){
        $('.vehicleselect').hide();
    
        var id = $(this).attr('id').replace('acc_category_heading', '');        
        $('#vehicleselect' + id).css({
            'left': (($(this).offset().left + $(this).outerWidth()) - 1) + 'px',
            'top': ($(this).offset().top - 29) + 'px',
            'padding-left': '4px',
            'display': 'block'
        });
    });
    
    $('.vehicleselect').mouseleave(function(){
        var id = $(this).hide();
    });
});




