var bigslideloading = null;

function SofirSlideShowItem(idshop, index, id, title, big_img, back_img, fblink, shop) {
	this.ShopLink = "content/inquire.php?height=180&width=310&modal=true&id="+idshop;
	this.index = index;
	this.id = id;
	this.Title = title;
	this.FBLink = fblink;
	this.Shop = shop;
	
	this.BigImg = new Image();
	this.IsBigLoaded = false;
	this.BigImgSrc = big_img;
	this.BigImg.onload = this.onbigloaded;
	
	if (back_img == "") {
		this.BackImgSrc = "./imgs/collection_back.gif";
	}
	else
		this.BackImgSrc = back_img;
}

SofirSlideShowItem.prototype.onbigloaded = function() {
	if (this.src.indexOf(bigslideloading.BigImgSrc) > 0)
	{
		bigslideloading.IsBigLoaded = true;
		AnimationLoaded(bigslideloading);
	}
}

SofirSlideShowItem.prototype.LoadBig=function() {
	AnimationLoading(this);
	bigslideloading = this;
	if (this.IsBigLoaded) {
		AnimationLoaded(bigslideloading);
	}
	else {
		this.BigImg.src=this.BigImgSrc;
	}
}

