﻿function ImgError(d){
	var img = new Image();
	img.onerror = function(){
		d.src = '/movie-detail/film_img/m/noimage_movie-detail.jpg';
		return false;
	}
	img.src = d.src;
}
$(function(){
	$("#history_divid ul li").ready(function(e){
		if (!$("#history_divid div.none").length) {
		$.getScript("./common/js/jquery/jcarousellite_1.0.1.js", function(){
			$.getScript("./common/js/jquery/history.js", function(){
				var hobj = $("#history_divid ul li img");
				var uobj = $("#history_divid ul li");
				var h = 0;
				for (var i = 0; i < (uobj.length); i++) {
					ImgError(hobj[i]);
					var th = $("#history_divid ul li:eq("+i+")").height();
					if (h < th) {
						h = th;
					}
				}
				h = h+20;
				$("#history a.prev").css("height",h+"px");
				$("#history a.next").css("height",h+"px");
				$("#history #history_divid").css("height",h+"px");
				$("#history script").css("height",h+"px");
			});
		});
		} else {
			$(".next").addClass("disabled");
		}
	});
});

