/*
  Custom ready function
  This should be used to reposition elements or to define and use custom functions
*/
$(document).ready(function(){

    // append a clearfix div to each UL in the sitemap
    $('.sitemap ul').each(function(){
        $(this).append('<div class="clear0"><!--ie--></div>');
    });

});//ready



