$(document).ready(function() {
	$('#accordion li').each(function() {
		$(this).find('.accordionContent').slideUp();
		$(this).attr('name',  $(this).attr('name').replace(/ /, '_'));
		$(this).find('.accordionHeader').attr('href', $(this).find('.accordionHeader').attr('href').replace(/ /, '_'));
		
		$(this).click(
		function() {
			if($(this).attr('id') != 'activeAccordion') {
				$('#accordion li').attr('id', '').find('.accordionContent').slideUp(300);
				$(this).attr('id', 'activeAccordion').find('.accordionContent').slideDown(300);
				$('#accordion li[id!=activeAccordion]').find('.accordionTitle').animate({ width: "572px" }, 300);
			}
		});
	
		$(this).hover(
			function() {
				if($(this).attr('id') != 'activeAccordion') {
					$(this).find('.accordionTitle').animate({ width: "623px" }, 150);
				}
			},
			function() {
				if($(this).attr('id') != 'activeAccordion') {
					$(this).find('.accordionTitle').stop().animate({ width: "572px" }, 150);
				}
			}
		);
		
		if(self.document.location.hash == $(this).find('a.accordionHeader').attr('href')) {
			$(this).attr('id', 'activeAccordion').find('.accordionContent').slideDown(300);
			$('#accordion li[id!=activeAccordion]').find('.accordionTitle').animate({ width: "572px" }, 300);
		}
	});
});

