//*********************************************CHANGE VIEWED NOW
$j(".curplay a").live("click", function(){
$j(this).after('<span>&nbsp;&nbsp;&nbsp;loading videos ...</span>');
$j(".innermids").slideUp(400,function(){new Ajax.Request("/proces.php",{method:'post',postBody:'nowvideos=1',onComplete:nvid_end});});
});
function nvid_end(req){
//alert(req.responseText);
$j(".curplay span:last").remove();
$j(".innermids").html(req.responseText);
$j(".innermids").slideDown(400);
}