$(function() {	$('.fadeout').hover(		function(){			$(this).fadeTo(50, 0.7);		},		function(){			$(this).fadeTo(50, 1);		}	);});var playWin;function demandWindow(theURL) { //v2.0  if(playWin) {    try {      if(playWin.closed) {        playWin = window.open(theURL,'demand','status=yes,scrollbars=no,resizable=no,width=462,height=480');      } else if(playWin.name == 'demand') {        //Existed Demand Player        playWin = window.open(theURL,'demand','status=yes,scrollbars=no,resizable=no,width=462,height=480');      } else if(playWin.name == 'live'){         playWin.close();        playWin = window.open(theURL,'demand','status=yes,scrollbars=no,resizable=no,width=462,height=480');      }    } catch(e) {}  } else {    playWin = window.open(theURL,'demand','status=yes,scrollbars=no,resizable=no,width=462,height=480');  }}function listWindow(theURL) { //v2.0  if(playWin) {    try {      if(playWin.closed) {        playWin = window.open(theURL,'songlist','status=yes,scrollbars=yes,resizable=no,width=640,height=550');      } else if(playWin.name == 'demand') {        //Existed Demand Player        playWin = window.open(theURL,'songlist','status=yes,scrollbars=yes,resizable=no,width=640,height=550');      } else if(playWin.name == 'live'){         playWin.close();        playWin = window.open(theURL,'songlist','status=yes,scrollbars=yes,resizable=no,width=640,height=550');      }    } catch(e) {}  } else {    playWin = window.open(theURL,'songlist','status=yes,scrollbars=yes,resizable=no,width=640,height=550');  }}
