var $j = jQuery.noConflict();
$j(document).ready(function($) {

$("li.downmenu").hover(function() {
        $(this).children().next('.children').show();
 }, function() {
        $(this).children().next('.children').hide();
 });


$('#round-border').corner("8px").parent().css('padding', '4px').corner("10px");
$('#footer').corner('top');

});