function showPreview(module, pic_id, lang, w, h){
	var ow=window.open("/"+lang+"/showpic/"+module+"/"+pic_id+"/", "showpic", "width="+w+",height="+h+",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes");
}
function showPic(pic_path, name){
	var ow=window.open("", "showpic", "width=500,height=600,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
	ow.document.write("<html><head><title>"+name+"</title></head>");
	ow.document.write('<body bottommargin="0" leftmargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0">');
	ow.document.write('<center>');
	ow.document.write('<a href="#" onClick="self.close();"><img src="'+pic_path+'" border="0" alt="'+name+'"/></a>');
}

$(document).ready(function() {
  $(".news_list li").hover(function() {
    $(this).addClass("jsover");
  },function() {
    $(this).removeClass("jsover");
  }).click(function() {
    var url = $("h3:first a",this).attr("href");
    document.location.href = url;
  });
});
