// JavaScript Document

$(document).ready(function(){
  /* register any elements that need validation 
	*	force validation on field change*/
	
	$("#promo_left .accordian_p li a").click(function(e) {
		if ($(this).parent().find("p").css("display") != 'none'){
			$(this).parent().find("p").hide('slow');
		}else{
			$(this).parent().find("p").show('slow');
		}
		e.preventDefault();

	});
/*
		if ($(this).find("div").css("display") != 'none'){
			$(this).find("div").hide('slow');
		}else{
			$(this).find("div").show('slow');
		}*/
	$("#main .accordian_p li a").click(function(e) {
		if ($(this).parent().find("div").css("display") != 'none'){
			$(this).parent().find("div").hide('slow');
		}else{
			$(this).parent().find("div").show('slow');
		}
		e.preventDefault();
	});

});