Accordion Menu Problems!

Accordion Menu Problems!

I followed a video tutorial to build a simple accordion menu...the only thing is that the code is somehow wrong. I keep getting a message that there is a syntax error in the code from my editor...Any suggestions?

// JavaScript Document
$(document).ready(function()
{
$("div.services_info").hide()
{
$("div.services_title").click(function()
{
$("div.services_info").slideUp("slow");
$(this).next("div.services_info:hidden").slideDown("slow");
});
});