// ************* OTT Homepage Code ********************************

		// Show subscribe button on the left when search box is on the right
		var showSubscribeLeftSearchRight = function(){
			$('#hero_left').attr('class', 'hero rightOTT');
			$('#copy_right').attr('class', 'copy leftOTT');
			$('#ott_subscribe').show();	
		}

		// Do not show the subscribe button when search box is on the right
		var hideSubscribeLeftSearchRight = function(){
			$('#hero_left').attr('class', 'hero rightOTT');
			$('#copy_right').attr('class', 'copy leftOTT');
			$('#ott_subscribe').hide();
		}

		// Show subscribe button on the right, when search box is on the left
		var showSubscribeRightSearchLeft = function(){
			$('#ott_subscribe').show();
		}

// ************* End of OTT Homepage Code **************************