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

        // append clear fix to each ul with floated children 
        $('.content-right ul, .sitemap ul, .home_articles ul').each(function(){
            $(this).append('<div class="clear0"><!--ie--></div>');   
        });
        
});//ready



