function changeMain(file,text,author,size){
	$("#main_pic").attr({
          src: "/images/bigger/"+file,
          title: text,
          alt: text
        });

	$("#main_text").html(text+"<br/>"+size+"<br/><i><strong>"+author+"</strong></i>");

	$("#gallery a").attr({
		href: "/images/" + file,
		title: text
	});
/*
	var main = document.getElementById("main_pic");
	main.src = "images/bigger/"+file;
	var comment = document.getElementById("main_text");
	comment.innerHTML = '“'+title+'”'+'<br /><i><strong>'+author+'</strong></i>';*/
	return;
}