$.noConflict();
  jQuery(document).ready(function($) {
    jQuery('ul.dropdown li').hover(function() {
        jQuery(this).addClass('hover');
        jQuery('ul:first', this).css('display', 'block');
    },
    function() {
        jQuery(this).removeClass('hover');
        jQuery('ul:first', this).css('display', 'none');
    });

    // remove the border from the last list item of the dropdown
    jQuery('ul.dropdown ul li:last').css('border', '0');
  });

/*
jQuery.noConflict()(function(){
    // drop-down menu
    jQuery('ul.dropdown li').hover(function() {
        jQuery(this).addClass('hover');
        jQuery('ul:first', this).css('display', 'block');
    },
    function() {
        jQuery(this).removeClass('hover');
        jQuery('ul:first', this).css('display', 'none');
    });

    // remove the border from the last list item of the dropdown
    jQuery('ul.dropdown ul li:last').css('border', '0');
});*/
