﻿jQuery.noConflict();  
jQuery(document).ready(function()
{
    jQuery("#link1").mouseover(function(){
        jQuery('#droplist1').fadeIn(300); 
        return false;
    }).mouseout(function(){
        jQuery('#droplist1').hide(); 
    });
    jQuery("#link2").mouseover(function(){
        jQuery('#droplist2').fadeIn(300); 
        return false;
     }).mouseout(function(){
        jQuery('#droplist2').hide(); 
    });
    jQuery("#link3").mouseover(function(){
        jQuery('#droplist3').fadeIn(300); 
        return false;
    }).mouseout(function(){
        jQuery('#droplist3').hide(); 
    });
    jQuery('#droplist1').mouseover( function() {
       jQuery('#droplist1').show();
    }).mouseout( function() {
        jQuery('#droplist1').hide();
    });
    jQuery('#droplist2').mouseover( function() {
       jQuery('#droplist2').show();
    }).mouseout( function() {
        jQuery('#droplist2').hide();
    });
    jQuery('#droplist3').mouseover( function() {
       jQuery('#droplist3').show();
    }).mouseout( function() {
        jQuery('#droplist3').hide();
    });
});
