$(document).ready(function()
{
// 	$("tr.even").mouseover(function() { $(this).css("background-color", "#CCCCCC"); })
// 	.mouseout(function() { $(this).css("background-color", "#DDDDDD"); });
// 	$("tr.odd").mouseover(function() { $(this).css("background-color", "#BBBBBB"); })
// 	.mouseout(function() { $(this).css("background-color", "#F5F5F5"); });

// 	$("tr.even").hover(function() { $(this).css("background-color", "#CCCCCC"); }, function() { $(this).css("background-color", "#DDDDDD"); });
// 	$("tr.odd").hover(function() { $(this).css("background-color", "#CCCCCC"); }, function() { $(this).css("background-color", "#F5F5F5"); });

// 	$("a > img").mouseover(function() { $(this).fadeTo("fast", 0.75); }).mouseout(function() { $(this).fadeTo("fast", 1); });

	$('#menu').Sortable(
		{
			accept: 'menuItem',
			helperclass: 'sortHelper',
			activeclass : 	'sortableactive',
			hoverclass : 	'sortablehover',
			handle: '',
			tolerance: 'pointer',
			onChange : function(ser)
			{
			},
			onStart : function()
			{
				$.iAutoscroller.start(this, document.getElementsByTagName('body'));
			},
			onStop : function()
			{
				$.iAutoscroller.stop();
			}
		}
	);
}
);
