jQuery(document).ready(function(){
    jQuery('div.select_lang').toggle(
       function(){ jQuery('div.lang_list').addClass('lang_block');},
       function(){ jQuery('div.lang_list').removeClass('lang_block');}
       );
});

(function($){ 
$('a.prmovie_popup').live('click', function(){
	newwindow=window.open($(this).attr('href'),'','height=480,width=720');
	if (window.focus) {newwindow.focus()}
	return false;
});
})(jQuery);

