/* <![CDATA[ */


this.Preview = function(){
	
		xOffset = 200;
		yOffset = 30;
		
	$("img.rollover").hover(function(e){
		xOffset = this.height
		// ++ Jan - html wegscheisser
		var regexp = /<("[^"]*"|'[^']*'|[^'">])*>/gi; 
		this.alt =this.alt.replace(regexp,"")
		this.title =this.title.replace(regexp,"")	
		if (this.parentNode.parentNode.className != 'hotproducts'){
		$("body").append("<div id='rollover' style='position:absolute;z-index:1000' class='shadow'><img style='border-top: 1px solid #f2f2f2;border-left: 1px solid #f2f2f2' src='"+ this.src.replace('thumb_','') +"' /></div>");	
		$("#rollover")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");	}					
    },
	function(){
		$("#rollover").remove();
    });	
	$("img.rollover").mousemove(function(e){
		$("#rollover")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

$(document).ready(function(){
	Preview();
});
/* ]]> */
