//$(document).ready(function () {
//	//$("ul.actions_body li:even").addClass("alt");
//    $('.actions_head_right').click(function () {
//	$('div.actions_body').slideToggle('medium');
//	ChangeImage();
//    });
//	//$('ul.actions_body li a').mouseover(function () {
//	//$(this).animate({ fontSize: "14px", paddingLeft: "20px" }, 50 );
//    //});
//	$('ul.actions_body li a').mouseout(function () {
//	$(this).animate({ fontSize: "12px", paddingLeft: "10px" }, 50 );
//    });
//});

function ChangeImage(achead_left, achead_left_var, achead_center, achead_right)
{
	var imgLeft = document.getElementById(achead_left);
	var imgLeftVar = document.getElementById(achead_left_var);
	var imgCenter = document.getElementById(achead_center);
	var imgRight = document.getElementById(achead_right);
	var where_is_r;

	if(imgLeft != null)	{
	    where_is_r = imgLeft.style.backgroundImage.indexOf('actions_head_left.png');
	}
	else if(imgLeftVar != null)	{
	    where_is_r = imgLeftVar.style.backgroundImage.indexOf('actions_head_left.png');
	}
	
	if ( where_is_r == -1 )	{
	    if(imgLeft != null)	    {
	        setTimeout("var imgRight = document.getElementById('" + achead_right + "');var imgCenter = document.getElementById('" + achead_center + "');var imgLeft = document.getElementById('" + achead_left + "');imgLeft.style.backgroundImage = 'url(/images/actions_head_left.png)';imgCenter.style.backgroundImage = 'url(/images/actions_head_center.png)';imgRight.style.backgroundImage = 'url(/images/actions_head_right.png)';",400);
	    }
	    else if(imgLeftVar != null)	    {
	        setTimeout("var imgRight = document.getElementById('" + achead_right + "');var imgCenter = document.getElementById('" + achead_center + "');var imgLeftVar = document.getElementById('" + achead_left_var + "');imgLeftVar.style.backgroundImage = 'url(/images/actions_head_left.png)';imgCenter.style.backgroundImage = 'url(/images/actions_head_center.png)';imgRight.style.backgroundImage = 'url(/images/actions_head_right.png)';",400);
	    }
			
	}	else	{
	    if(imgLeft != null)	    {
	        imgLeft.style.backgroundImage = 'url(/images/actions_collapsed_left.png)';
	    }
	    else if(imgLeftVar != null)	    {
	        imgLeftVar.style.backgroundImage = 'url(/images/actions_collapsed_left_var.png)';
	    }
		
		imgCenter.style.backgroundImage = 'url(/images/actions_collapsed_center.png)';
		imgRight.style.backgroundImage = 'url(/images/actions_collapsed_right.png)';
	}
	$('.actions_head_center').toggleClass("actions_head_center_greyText");
}