﻿$j(document).ready(function () {

	$j('.Thumb').live('mouseover', function () {
		$j(this).data('SrcImg', this.src);
		this.src = this.title
	});

	$j('.Thumb').live('mouseout', function () {
		if ($j(this).data('SrcImg'))
			this.src = $j(this).data('SrcImg');
	});

	// Preload images
	$j('.Thumb').load(function () {
		$j('<img>', { src: this.title }).load(function () {
			$j(this).remove() 
		});
	});

});
