$(document).ready(function() {

	$("div#dropDown1").hide("drop", { direction: "down" });
	$("div#dropDown2").hide("drop", { direction: "down" });
	
	$("div.effect")
		.hover(function() {
			$(this).addClass("hover");
		}, function() {
			$(this).removeClass("hover");
		})
		;
	
    var effect = function(mouser, el, n, o) {
		
		$.extend(o, {
			easing: "easeOutQuint"
		});

		// PATHS HERE ARE POSSIBLY DANGEROUS!  IF the site gets moved behind another directory.
		$(mouser).toggle(function() {
				$(el).show(n, o, 1350);
				$(el).children('div.effect-inner').children('div').children("div.effect-tab-header-icon").html('<img src="/includes/img/home/tab_arrow.gif" alt="click to move down" />');
		}, function() {
		    $(el).hide(n, o, 1350);
        $(el).children('div.effect-inner').children('div').children("div.effect-tab-header-icon").html('<img src="/includes/img/home/tab_arrow.gif" alt="click to move up" />');
		});
	};

	effect("#dropHeader1Wrapper", "#dropDown1", "drop", { direction: "down" });
  effect("#dropHeader2Wrapper", "#dropDown2", "drop", { direction: "down" });

	$("#transfer").bind("click", function() { $(this).addClass("current").effect("transfer", { to: "div:eq(0)" }, 1000, function() { $(this).removeClass("current"); }); });
	
});