// JavaScript Document

jQuery(document).ready(function(){
jQuery(".nav > ul > li").hover(
function(){
jQuery(this).find("img.rollover").fadeIn(200);
jQuery(this).find("ul").slideDown(400);
},
function(){
jQuery(this).find("img.rollover").fadeOut(200);
jQuery(this).find("ul").slideUp(400);
});
jQuery(".buckets a").hover(
function(){
jQuery(this).find("img.rollover").fadeIn(400);
},
function(){
jQuery(this).find("img.rollover").fadeOut(400);
});
});
