// JavaScript Document
jQuery(document).ready(function($) {

	$('.accordionContent').parent().css('cursor', 'pointer');

	$('.accordionEntry').click(function (e) {

		if (e.target.tagName != 'A' && e.target.tagName != 'LI') {

			if ($('body').hasClass('ie6') || $('body').hasClass('ie7')) {
				
				$(this).find('.accordionContent').toggle();
				$(this).find('.expandPlus').toggle();
				$(this).find('.expandMinus').toggle();
				
			} else if (!$(this).find('.accordionContent').is(':visible')) {

				$(this).find('.accordionContent').slideDown('slow').show(function() { $(this).show(); });
				$(this).find('.expandPlus').hide();
				$(this).find('.expandMinus').show();

			} else {

				$(this).find('.accordionContent').slideUp('slow');
				$(this).find('.expandPlus').show();
				$(this).find('.expandMinus').hide();

			}

		}

	});

});
