Eliot456,
$(function() {
var $ul = $("#main-menu li > ul");
$ul.each(function(indx, el) {
$(el).hide().prev().on("click", function(event) {
event.preventDefault();
$ul.not(el).slideUp();
$(el).slideToggle()
}).hover(function() {
$(this).css({
"color": "#FF00FF"
})
}, function() {
$(this).css({
"color": "#000"
})
})
})
});