// JavaScript Document
//This was written by James Baldys
//This particular file was created for the Life Skills page @ UVa
//Copyright 2008 Under the MIT license.  Feel free to use it.
$(document).ready(function() {
		prep_menu();
		//THIS FORCES ALL LINKS IN THE SIDEBAR DIV TO OPEN IN A NEW WINDOW
		$("#sidebar > ul > li > a").not(".homeLink").attr("target","_blank");
});
function prep_menu() {
	$("a.drop_down").click(function(){
		clicked_item = $(this).attr("id");										 
		target_ul = clicked_item + "_target";
		current_text = $(this).text();
		current_status = $("#"+target_ul).css("height");
		if(current_status == "0px") {
			current_text = current_text.replace(/\+/, "-");
			$("#"+target_ul).animate({
				height: "70px"
			}, 300, 'swing');
		} else {
			current_text = current_text.replace(/-/, "+");
			$("#"+target_ul).animate({
				height: "0px"
			}, 300, 'swing');
		}
		$(this).text(current_text);
		return false;
	});
}