// JavaScript Document
function swap (image, height){
	
	var newImage;
	document.getElementById('big_image').src=image;	
	document.getElementById('big_image').style.marginTop = ((300 - height)/2)+'px';
	return;
	

}