
  $.noConflict();



  jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.



$(document).ready(function(){

// Begin :: add this custom dropdown
$(function()
	{
$('.mybutton', this).mouseenter(function()
    {
        $('.hover_menu', this).fadeIn('fast');
        $(this).data('in', true);
        $('.hover_menu',this).data('hidden', false);
    }).mouseleave(function()
    {
        $(this).data('in', false);
        setTimeout(hideMenu, delay);
    });

    var delay = 200;
    function hideMenu()
    {
        if (!$('.mybutton', this).data('in') && !$('.hover_menu', this).data('in') && !$('.hover_menu', this).data('hidden'))
        {
            $('.hover_menu').fadeOut('fast');
            $('.hover_menu').data('hidden', true);
        }
    }
});
// End :: add this custom dropdown


});





});
  // Code that uses other library's $ can follow here.

