$(document).ready(function() {
	/* //This is if each "step" should be allowed to have one accordion item open, independent of the other steps
	$('.accordion').each(function(i,e){
		simpleAccordion($(e).find('h4'),true,true);
	});*/
	$('.activator h2 a').click(function(event){
		event.stopImmediatePropagation()
	});
	simpleAccordion('.activator');
	simpleAccordion('body.extras .heading');
	
	modalWindow('#modal-partnerCon-2011');
	/*
	$('.close').click(function(e){
		e.preventDefault();
		$(this).parents('.modal').fadeOut();
		$('.modal-opaque').fadeOut();
	});
	
	$('.modal-opaque').click(function(e){
		e.preventDefault();
		$(this).fadeOut();
		$('.modal').fadeOut();
	});*/
});
