$(document).ready(initDropDown);
	
	function initDropDown(){
		$("#Partnerships").click(function(){
			if (!$("#dropDownDiv_Partnerships").is(":visible")) {
				var position = $(this).position();
				//$("#dropDownDiv_Partnerships").css({
				//	"left": position.left - ($("#dropDownDiv_Partnerships").width() / 4)
				//})
				$(".dropDownDiv").fadeOut();
				$("#dropDownDiv_Partnerships").fadeIn();
			} else {
				$(".dropDownDiv").fadeOut();
			}
		});
		$("#Chapters").click(function(){
			if (!$("#dropDownDiv_Chapters").is(":visible")) {
				var position = $(this).position();
				//$("#dropDownDiv_Chapters").css({
				//	"left": position.left - ($("#dropDownDiv_Chapters").width() / 4)
				//})
				$(".dropDownDiv").fadeOut();
				$("#dropDownDiv_Chapters").fadeIn();
			} else {
				$(".dropDownDiv").fadeOut();
			}
		});
		$("#Live_Events").click(function(){
			if (!$("#dropDownDiv_Events").is(":visible")) {
				var position = $(this).position();
//				$("#dropDownDiv_Events").css({
	//				"left": position.left - ($("#dropDownDiv_Events").width() / 4)
		//		})
				$(".dropDownDiv").fadeOut();
				$("#dropDownDiv_Events").fadeIn();
			} else {
				$(".dropDownDiv").fadeOut();
			}
		});
		$(".close_box").click(function(){	
		$(".dropDownDiv").fadeOut();
		});
		
		
	}