jQuery(document).ready(function(){
	jQuery(function($) {
	    // Two separate jQuery references
	    var H1 = $("H1.with-tabs");

	    // Test equality
	    if( H1.text() === " Welcome" ) {
	        H1.hide();
	    }
	});
});
;

