$(function() {
	$('#schwabLink').hover(
		function() {	
			if (this.firstChild.src.indexOf('_over') < 0) {				
				this.firstChild.src = this.firstChild.src.replace( /\.jpg$/, '_over.jpg' );
			}
			
		},
		function() {
			if (this.className != "sel") {
				this.firstChild.src = this.firstChild.src.replace( /_over\.jpg$/, '.jpg' );
			}
		}
	);
});

$(function() {
	$('#seeAllNews').hover(
		function() {	
			if (this.firstChild.src.indexOf('_over') < 0) {				
				this.firstChild.src = this.firstChild.src.replace( /\.png$/, '_over.png' );
			}
			
		},
		function() {
			if (this.className != "sel") {
				this.firstChild.src = this.firstChild.src.replace( /_over\.png$/, '.png' );
			}
		}
	);
});

$(function() {
	$('#teamMenu .teamMember a').hover(
		function() {	
			if (this.firstChild.src.indexOf('_over') < 0) {				
				this.firstChild.src = this.firstChild.src.replace( /\.jpg$/, '_over.jpg' );
			}
			
		},
		function() {
			if (this.firstChild.className != "sel") {
				this.firstChild.src = this.firstChild.src.replace( /_over\.jpg$/, '.jpg' );
			}
		}
	);
});

$(function() {
	$('#bottomFullContent .schwabLink img').hover(
		function() {	
			if (this.src.indexOf('_over') < 0) {				
				this.src = this.src.replace( /\.png$/, '_over.png' );
			}
			
		},
		function() {
			if (this.className != "sel") {
				this.src = this.src.replace( /_over\.png$/, '.png' );
			}
		}
	);
});

$(function() {
	$('#getReader').hover(
		function() {	
			if (this.src.indexOf('_over') < 0) {				
				this.src = this.src.replace( /\.png$/, '_over.png' );
			}
			
		},
		function() {
			if (this.className != "sel") {
				this.src = this.src.replace( /_over\.png$/, '.png' );
			}
		}
	);
});



$(function() {
	$('#emailus').hover(
		function() {	
			if (this.firstChild.src.indexOf('_over') < 0) {				
				this.firstChild.src = this.firstChild.src.replace( /\.png$/, '_over.png' );
			}
			
		},
		function() {
			if (this.className != "sel") {
				this.firstChild.src = this.firstChild.src.replace( /_over\.png$/, '.png' );
			}
		}
	);
});

