// JavaScript Document

//var pgi_menu = 1;

$(document).ready( function() {
	//$(".ml,.mlf,.mll").click( function() { 
	//	var i = $(this).attr('id').substring(8);
	//	if ( pgi_menu != i ) {
	//		$("#pgi_menu"+pgi_menu).removeClass((pgi_menu==1?'mlfd':(pgi_menu==7?'mlld':'mld')));
	//		$("#pgi_content"+pgi_menu).fadeOut( "fast", function() { $("#pgi_content"+i).fadeIn("fast"); } )
	//		$("#pgi_menu"+i).addClass((i==1?'mlfd':(i==7?'mlld':'mld')));
	//		pgi_menu = i;
	//	}
	//} );
	$(".pgi_panel_movie").hover( function() { $(this).addClass("pgi_pnl_content_hl"); $("#pgi_panel_moviel"+$(this).attr('id').substring(15)).css( { opacity:0.9, filter:'alpha(opacity=90)' } ); } ,  function() { $(this).removeClass("pgi_pnl_content_hl"); $("#pgi_panel_moviel"+$(this).attr('id').substring(15)).css( { opacity:1, filter:'alpha(opacity=100)' } ); } );
	$(".pgi_panel_movie").click( function() { location.href = $("#pgi_panel_moviel"+$(this).attr('id').substring(15)).attr('href');  } );
} );