//  ========================================================
//  tlab-ranking-view.js ---- ranking view class
//  Copyright 2009 TEAM-LAB
//  ========================================================

if ( typeof(TLAB_READ_CSS) == 'undefined' )
{
	TLAB_READ_CSS = true;
	$("head").append('<liNK rel="stylesheet" type="text/css" href="../5css/lab_content.css">');
}

if ( typeof(TLAB_RK_VIEW) == 'undefined' ) TLAB_RK_VIEW = function() {};

TLAB_RK_VIEW.CategoryRanking = function (arg1, arg2, arg3) {
	this.divtag = arg1;
	this.ctype = escape(arg2);
	this.cat = escape(arg3);
	this.jsurl = "http://reco.dospara.co.jp/cl000/ranking.js?elem=" + this.divtag + "&ctype=" + this.ctype + "&cat=" + this.cat;
	return this;
}

TLAB_RK_VIEW.CategoryRanking.prototype.sendRequest = function () {
	$("#"+this.divtag).addClass("rankingArea clearfix");
	var jsElement=document.createElement("script");
	jsElement.type="text/javascript";
	jsElement.src=this.jsurl;
	jsElement.characterSet="UTF-8";
	document.getElementById(this.divtag).appendChild(jsElement);
}
