function Story(title, link, text, mainImg, menuImg, type) {
	this.title = title;
	this.link = link;
	this.text = text;
	this.mainImg = new Image();
	this.mainImg.src = mainImg;
	this.menuImg = new Image();
	this.menuImg.src = menuImg;
	
	this.tagImg = new Image();
	if (type == 'multimedia') {
		this.tagImg.src = 'pics/homepage/tag_multi.png';
	} else if (type == 'clickable') {
		this.tagImg.src = 'pics/homepage/tag_click.png';
	} else {
		this.tagImg.src = 'pics/homepage/tag_mag.png';
	}
}

function PhotoStory(title, link, text, photographer, mainImg, menuImg, type) {
	this.title = title;
	this.link = link;
	this.text = text;
	this.photographer = photographer;
	this.mainImg = new Image();
	this.mainImg.src = mainImg;
	this.menuImg = new Image();
	this.menuImg.src = menuImg;
	
	this.tagImg = new Image();
	if (type == 'multimedia') {
		this.tagImg.src = 'pics/homepage/tag_multi.png';
	} else if (type == 'clickable') {
		this.tagImg.src = 'pics/homepage/tag_click.png';
	} else {
		this.tagImg.src = 'pics/homepage/tag_mag.png';
	}
}
