jQuery(document).ready(function() {

	var pathname = window.location.href;
	
	if (pathname == "http://www.planetbenfica.co.uk/news.php" || pathname == "http://planetbenfica.co.uk/news.php" || pathname.indexOf("default") != -1)
	{	

		//toggle
		$('#content').find('dd').hide().end().find('dt').click(function() 
		{
			$(this).next().slideToggle();
		});
		
	}
   
	/*$('#content').find('dd').click(function() {
     $(this).slideToggle();
   });*/
	
	
	 $('#content').find('dt').hover(function(){
         $(this).addClass("cursor_pointer");
		 $(this).addClass("red");
       },function(){
        $(this).removeClass("cursor_pointer");
		$(this).removeClass("red");
      }); 
	

});
