$(document).ready(function(){
	var path = 'images/tabs/'
	$('#main-tabs img').hover(function() {
  		this.src = path + this.id + '-over.gif';
	}, function() { 
  		this.src = path + this.id + '.gif';
	});
});
