﻿$(document).ready(function() {
    
    //Any Expandable List has fixed height
    
    $('.expandableList .elInner').css('height','64px');
    $('.expandableList .elInner').css('overflow','hidden');
    
    $('.expandableList a.expandLink').click(function(){        
        $(this).parent().children('.elInner').css('height','auto');
        $(this).css('display','none');
        return false;        
    });
    $('.expandableList .elInner a.closeLink').click(function(){        
        $(this).parents('.elInner').css('height','64px');
        $(this).parents('.expandableList').children('a.expandLink').css('display','block');
        return false;        
    });
    
});
