function dropDownSwitcher(_list){
	$(_list).hover(
		function(){
			dropDownOpen(_list);
		},
		function(){
			dropDownClose(_list);
		}
	);
}
function dropDownClose(_list){
	$("li",_list).hide();
	$("li:first",_list).show();
	$(_list).removeClass("open");
}
function dropDownOpen(_list){
	$("li",_list).fadeIn("fast");
	$(_list).addClass("open");
}
function moduleOdd(){
	$(".module").each(function(e){
		$("li:even",this).addClass("odd");
	})
}
$(document).ready(function(){
	moduleOdd();
	$(".labelify").labelify();
	dropDownClose($("#user_menu ul.actions"));
	dropDownSwitcher($("#user_menu ul#site_actions"));
	dropDownSwitcher($("#user_menu ul#user_actions"));
	dropDownSwitcher($("#user_menu ul#space_actions"));
	dropDownSwitcher($("#user_menu ul#login_actions"));
});