$().ready(function() {
	$("dl.actions dd").hover(function()
	{
		$(this).addClass("action_hover");
	},
	function()
	{
		$(this).removeClass("action_hover");
	}
	);

	$("dl.actions dd.action_hover").live("click",function()
	{
		window.location.href = $(this).children("a").attr("href"); 
	});

	$("dl.actions dd a").click(function(e)
	{
		console.log("HELLO");
		e.stopPropagation();
		return true;
	});



	$("dl.action dt").hover(function()
	{
		tgt=$(this).next("dd");
		tgt.addClass("action_hover");

	},
	function()
	{
		tgt=$(this).next("dd");
		tgt.removeClass("action_hover");
	}
	);
	
});

