 $(function() {
	$('#navigation ul li a img').hover(
		function() {
			if (this.src.indexOf('_over') < 0) {
				this.src.indexOf('_over') ;
				this.src = this.src.replace( /\.gif$/, '_over.gif' );
			}
		},
		function() {
			
			if (this.parentNode.parentNode.className != "sel") {
				this.src = this.src.replace( /_over\.gif$/, '.gif' );
			}
		}
	);
});
	
$(function() {
	$('#homeDepartments a img').hover(
		function() {				
			this.src = this.src.replace( /\.jpg$/, '_over.jpg' );
		},
		function() {
			this.src = this.src.replace( /_over\.jpg$/, '.jpg' );
		}
	);
});

$(function() {
	$('#homeRentals a img').hover(
		function() {				
			this.src = this.src.replace( /\.jpg$/, '_over.jpg' );
		},
		function() {
			this.src = this.src.replace( /_over\.jpg$/, '.jpg' );
		}
	);
});


$(function() {
	$('#aboutUsNav a').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' );
			}
		}
	);
});