///////////////////////////// Window Onload///////////////////////////////


/*-------------------------- Toggly Functionality ----------------------------*/
$(".toggly dd").hide();
$(".toggly dt").click(function() {
	if ($(this).attr("class") == "on") {
		$(this).next("dd").slideUp("fast");
		$(this).removeClass("on");
	}
	else {
		$(this).next("dd").slideDown("fast");
		$(this).addClass("on");
	}
});

$(".toggly_expand").click(function() {
	$(".toggly dt").each(function() {
		if ($(this).attr("class") != "on") {
			$(this).next("dd").slideDown("fast");
			$(this).addClass("on");
		}
	});
});

$(".toggly_collapse").click(function() {
	$(".toggly dt").each(function() {
		if ($(this).attr("class") == "on") {
			$(this).next("dd").slideUp("fast");
			$(this).removeClass("on");
		}
	});
});

/*---------------------------- Shadow Pop ----------------------------*/


/*------------------------------ Poppy Box  ------------------------------*/
$(".poppy, .thickbox").popIt();
