$(document).ready(function() {

$('.hover_auto').mouseover(function() { this.src = this.src.replace('_normal', '_hover'); });
$('.hover_auto').mouseout(function() { this.src = this.src.replace('_hover', '_normal'); });

$('.hover_auto').each(function() {$('#load_images_hover').append('<img src="'+this.src.replace('_normal', '_hover')+'" alt="" />');});

$('*').each(function() {
$(this).ToolTip(
	{
		className: 'toolTips',
		position: 'mouse',
		delay: 0,
		//onShow: function() { $('.toolTips').css('marginLeft', '20px'); },
	}
);
});

});
