		var searchValueDefault = 'Search TBN programs, people, or channels...';
		
		$(document).ready(
			function() {
			/* Hides search forms until page is finished loading */	
				$(".search_wrapper .seach_form").show();
			
			/* Watch live link & panel in header */
				$("#watch_live_block").mouseenter(function() {
					$(".watch_live_panel").show();
				}).mouseleave(function() {
					$(".watch_live_panel").hide();
				});
									
			/* Removes vertical divider from global + sub fade in menu*/
				$("div.pane table:eq(0) td:last, div.pane table:eq(1) td:last, div.pane table:eq(2) td:last").css({backgroundImage: 'none'});
				$("div.fixed_pane table:eq(0) td:last, div.pane table:eq(1) td:last, div.pane table:eq(2) td:last").css({backgroundImage: 'none'});

			/* Toggle the thumbnail video player volume icon */
				$("a.player_volume").click(function() {
					$(this).toggleClass('volumeOn');
				});	
				
			/* Add class to input search type: button */
				$('.search_wrapper input:text, .footer_container input:text').addClass('search_field');
				$('.search_wrapper input:submit, .footer_container input:submit').addClass('submit_button');	
			
			/* Search input field: Adds and removes init value */				
				$(".search_field").attr('value', searchValueDefault);
				
				$(".search_field").focus(function() {
					if($(this).val() == searchValueDefault) {
						$(this).attr('value', '');
					}
				}).blur(function() {
					if($(this).val() == '') {
						$(this).attr('value', searchValueDefault);
					}
				});
			/* Add class for OSX ::: fixes 2px issue with .pane object*/	
				var whichPlatform = navigator.platform.slice(0,3);
				if(whichPlatform == "Mac") {
					$(".pane").addClass('pane_fix');
				}
											
		});
		
		function searchValidate(formCounter) {
			searchVal = $('#searchForm' + formCounter).find(".search_field").val();
			
			if (searchVal == '' || searchVal == searchValueDefault) {
				return false;
			}
		}

