var getImage = function(id){
	this.id = id;
	this.target = document.getElementById(this.id);
	this.image = this.target.getElementsByTagName('img')[0];
	this.anchor = this.image.parentNode;
	this.anchor.style.cursor = 'text';
	this.anchor.onclick = function(){
		return false;
	}
	
}


var mobileImage = new getImage('primaryContent');

