var $j = jQuery.noConflict();

$j(document).ready(
	function () {
	//	StartMenuEffects();
	}
);


function StartMenuEffects() {
	/*
	debugger;
    var list = $j("#access a");

    list.each(function() {
    	var element = $j(this);
        if (element.className.indexOf("current_page_item") >= 0) return;
        
        element.mouseOver(function(){element.animate({ color:'#223322', backgroundColor:'#FDEF74', 'text-indent': 40}, 250);});
        element.mouseOut(function(){element.animate({ color:'#FFFFFF', backgroundColor:'#74BE11', 'text-indent': 20}, 250);});
        
    });
    */
}


