window.addEvent( 'domready', function() {

	// Enable the search button on other pages other than the home screen
	if ( $( 'findYoga' ) && $( 'searchTerms' ) ) { 
    
	    $( 'findYoga' ).addEvent( 'click', function() { 
	        top.location.href = '/Page/Home?search=' + $( 'searchTerms' ).value; 
	    });
        
	    $( 'searchTerms' ).addEvent( 'keyup', function( event ) {
            
	        if ( event.key == 'enter' )
	            top.location.href = '/Page/Home?search=' + $( 'searchTerms' ).value;
        
	    });
            
	}

});
