// JavaScript Document
$(document).ready(function(){
						  // $(".ny-liftbt").addClass("ny-liftbt-new");
						   $(".ny-liftbt").next().hide();
						   $(".ny-liftbt").toggle(function(){ 
													//	 $(this).addClass("ny-liftbt-new-sel");
														srcText=$(this).find("img").attr("src");
														srcText_new=srcText.replace(/_be/,"_after");
														$(this).find("img").attr("src",srcText_new);
														 $(this).next().show();
														 },
														 function(){
														//	$(this).removeClass("ny-liftbt-new-sel");
															srcText=$(this).find("img").attr("src");
															srcText_new=srcText.replace(/_after/,"_be");
															$(this).find("img").attr("src",srcText_new);
															$(this).next().hide(); 
														 }
														 );
						   }); 