function swapLeft(image, title, subtitle, textel){
	$('.productdesclanding h1').attr('innerHTML', title);
	$('.productimglanding').attr('src', image);
	if(subtitle !== 'undefined' && subtitle !== ""){
		$('.productdesclanding h4').attr('innerHTML', subtitle);
	}
	if(textel !== 'undefined' && textel !== ""){
		var content = $('#'+textel).attr('innerHTML');
		$('.productdesclanding p').attr('innerHTML', content);
	}
}