////// Custom Basic Lightbox

function showVideo(id){
	
	var boxBackground = document.getElementById('backBg');
	
	boxBackground.style.display = 'block';
	
	var newVideoContainer = document.getElementById('videoBox');
	
	newVideoContainer.innerHTML = "<img class='closeBttonI' src='http://www.maximumfighting.com/wp-content/themes/MaximumFighting/images/close.png' alt='close' /><iframe src='http://player.vimeo.com/video/" + id + "?autoplay=1' width='650' height='360' frameborder='0'></iframe>";
		
}

function hideVideo(){
	
	var boxBackground = document.getElementById('backBg');
	
	boxBackground.style.display = 'none';
	
	var newVideoContainer = document.getElementById('videoBox');
	
	newVideoContainer.innerHTML = '<div></div>';
	
}

function showImage(theImage, thewidth){
	
	var boxBackground = document.getElementById('backBgImg');
	
	boxBackground.style.display = 'block';
	
	var newVideoContainer = document.getElementById('imgBox');
	
	newVideoContainer.style.width = thewidth+'px';
	
	newVideoContainer.innerHTML = "<img class='closeBttonI' src='http://www.maximumfighting.com/wp-content/themes/MaximumFighting/images/close.png' alt='close' /><img style='max-width:"+thewidth+"px;' src='" + theImage + "' />";
		
}

function hideImage(){
	
	var boxBackground = document.getElementById('backBgImg');
	
	boxBackground.style.display = 'none';
	
	var newVideoContainer = document.getElementById('imgBox');
	
	newVideoContainer.innerHTML = '<div></div>';
	
}
