function popup(){
              window.open('player.html','MP3', "width=380, height=335,' toolbar=no, scrollbars=no,resizable=no,status=no', left=1,top=1");
             // alert("test");
             }
$(document).ready(function(){
	init();
	var $i=0;
	function show($r)
	{
		if ($r.is(':animated'))
			$r.stop(true, true);
		
		$r.animate({ 
				opacity: 1.0}, 100);
	}
	function hide($r)
	{
		$r.animate({ 
				opacity: 0.0}, 400);
	}
	
	$(".main_menu li a").hover(function(){
	// show
		$i = $(this).parent().find('div');
		show($i);
	},function(){
		// hide
		$i = $(this).parent().find('div');
		hide($i);
	});
});

/*
<img src="img/pattern_l.png" alt="" width="46" height="64" class="l"/>
	  <img src="img/pattern_r.png" alt="" width="43" height="51" class="r" /> 
*/
function init()
{
// $(".main_menu li").prepend("<img style='opacity:0.0;' src='img/pattern_l.png' alt='' width='46' height='64' class='l'/><img  style='opacity:0.0;' src='img/pattern_r.png' alt='' width='43' height='51' class='r' />");	
$(".main_menu li").prepend("<div class='l'><img width='46' height='64' src='img/pattern_l.png'/></div><div class='r'><img width='43' height='51' src='img/pattern_r.png'/></div>");	
}
