$(document).ready(function () {
	if($('td#content').length) {
		var c = $('td#content');
		if(c.find('p.productDesc').length && c.find('img#productImage').length) {
			c.find('img#productImage').before('<img id="fadingImage" src="./img/dot-clear.gif" alt="" />');

			c.find('p.productDesc a').mouseenter(function(){
				var newImg = './img-soucastky/'+parseInt($(this).parent('p').attr('id'))+'.jpg';

				c.find('img#fadingImage').css('opacity', 0);
				c.find('img#fadingImage').attr('src', newImg);
				c.find('img#fadingImage').animate(
				{'opacity': 1},
				'fast',
				'linear',
				function() {
					c.find('img#productImage').attr('src', newImg);
					c.find('img#fadingImage').css('opacity', 0);
				}
				);
			});
		}
	}
});
