//Javascript


$(document).ready(function(){


$("#moveRight1,#moveRight2").click(function(event){
							   					event.preventDefault();
													
													 
													
													
													$("#moveRight1,#moveRight2").parents(".menu_container").each(function(i,itm){
																														  $(itm).animate({right: '-170px'},"slow");
																														  });
													 
													return false;
								});
												

$("#moveLeft1,#moveLeft2").click(
												function(event){
													event.preventDefault();
													
												 
													
													$("#moveLeft1,#moveLeft2").parents(".menu_container").each(function(i,itm){
																														 $(itm).animate({right: '0px'},"slow");
																														   });
													return false;
													});


$(".return_main").hover(
						function(){
							$(this).find(".arrow_up").attr({src:	"images/menu_up_over_ar.gif"});
							}
							,
						function(){
					 		$(this).find(".arrow_up").attr({src:"images/menu-level-up-right.gif"});
							});




});// end $(document).ready(function()

