var appname = navigator.appName;
var appversion = navigator.appVersion.split(";");
picwidth = '145px';
picheight = '194px';

if (appname == "Microsoft Internet Explorer") {
	var appver=appversion[1];
	
	if (appver==" MSIE 6.0") {
		picwidth = '137px';
		picheight = '183px';
	}
}

$(document).ready(function(){
//Larger thumbnail preview
	$(".sortiment .item").hover(function() {
		$(this).css({'z-index' : '10'});
		//$(this).find('span').css('font-size', '12px');
		//$(this).find('span').css('color', 'yellow');
		$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-20px',
			marginLeft: '7px',
			top: '50%',
			left: '50%',
			width: picwidth,
			height: picheight,
			padding: '0px'
		}, 200);
	} , function() {
		$(this).css({'z-index' : '0'});
		//$(this).find('span').css('font-size', '16px');
		//$(this).find('span').css('color', '#BBBBBB');
		$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0',
			marginLeft: '22px',
			top: '0',
			left: '0',
			width: '116px',
			height: '155px',
			padding: '0px'
		}, 400);
	});
});
