	ajaxInfo = function(id, divId) {
		$('#trailerInfo').load(baseUrl+"/trailer/info/id/"+id+"/divId/"+divId);
	}	
	
	getTrailerPage = function(page,divId,type) {
		$('#trailerCarousel').load(baseUrl+"/trailer/nextprev/page/"+page+"/divId/"+divId+"/type/"+type);
	}
	
	getNextPrevTrailer = function (currPage, total, dir, divId, type) {
		
		switch (dir) {
			case "next" : if ( (currPage++)*4 < total ) 
				getTrailerPage(currPage,divId, type);
				break;
			case "prev" : if ( currPage-- != 1 ) 
				getTrailerPage(currPage,divId, type);
				break;
		}
	}