$(document).ready(function() {
$('#pullNav').toggle(function() {
   //even event
$("#top_menu").animate({ height: "3.5em"}, 500 ); //3.5em
}, function() {
  //odd event
$("#top_menu").animate({ height: "1px"}, 500 );
});
// end nav toggle
$('dt').click(function() {
$('dd').animate({ height: "0"}, 500 );
$('dt').children('.plus').text('+');
$(this).next('dd:first').animate({ height: "4em"}, 500 );
$(this).children('.plus').text('-');
});
if( $("h1").text() == "News") {
  $("h1").addClass("news");
}
if( $("h1").text() == "Blog") {
  $("h1").addClass("blog");
}
if( $("h1").text() == "Contact") {
  $("h1").addClass("contact");
}
if( $("h1").text() == "Services") {
  $("h1").addClass("services");
}
if( $("h1").text() == "About Us") {
  $("h1").addClass("about-us");
}
if( $("h1").text() == "Email Sign Up") {
  $("h1").addClass("email-signup");
}
if( $("h1").text() == "Services - Print Marketing") {
  $("h1").addClass("services-print");
}
if( $("h1").text() == "Services - Web Marketing") {
  $("h1").addClass("services-web");
}
if( $("h1").text() == "Services - Event Marketing") {
  $("h1").addClass("services-event");
}
if( $("h1").text() == "RSVP - New Year's Eve 2010") {
  $("h1").addClass("rsvp");
}
// end doc ready
});
$(window).load(function () {
$("#top_menu").animate({ height: "1px"}, 800 );
});
