﻿﻿﻿﻿﻿﻿﻿﻿/// <reference path="http://wwwdev.4imprint.com/_JS/jquery/jquery-vsdoc.js" />
$(function() {
	$('.highlightItem img')
		.width(72)
		.height(84)
		.bind('mouseover', function() {
		    var imgClone = $(this).clone(false);
		    var origPos = $(this).position();
			imgClone.css({'position': 'absolute', 'top':  origPos.top, 'left': origPos.left})
			        .bind('mouseout', function() { 
			            $(this).animate({width: 72, height: 84}, 'fast', function(){ $(this).remove(); }); 
			        })
			        .insertBefore($(this))
			        .animate({width: $(this).width() * 1.1, height: $(this).height() * 1.1}, 'fast'); 
		})
		.bind('error', function() { $(this).attr('src', '/content/common%20to%20all/images/core/NoImg.gif'); });
});






