  // JavaScript Document
var changeImg=function(obj){
	var img=obj.getElementsByTagName('img')[0];
	var temp=img.src;
	temp=temp.substring(temp.lastIndexOf('/')+1,temp.length);
	document.getElementById('pic').style.backgroundImage='url(upload_img/big/'+temp+')';
}
