$(document).ready(function(){

	$("#flashmsg").dialog({ 
		modal: true,
		height: 300,
		width: 500,
		title: '<img src="/public/gfx/error.png" /> Warning' 
	});

	
	$('ol#faq h2').click( function() {
		$(this).nextAll('p').slideToggle('fast');
	});
	
	$('ol#faq h2').hover(
      function () {
        $(this).addClass('over');
      }, 
      function () {
        $(this).removeClass('over');
      }
    );
		    
		
});
