$(document).ready(function() {
	$("#image1").magnify({
		lensWidth: 90,
		lensHeight: 100,
		showEvent: 'mouseover',
		hideEvent: 'mouseout',
		preload: true,
		stagePlacement: 'left',
		lensCss: { backgroundColor: '#cc0000', border: '0px', opacity: 0.4 }//,
//		stageCss: { border: '4px solid #34350D' }
	});
	$("#image2").magnify({
		lensWidth: 90,
		lensHeight: 100,
		showEvent: 'mouseover',
		hideEvent: 'mouseout',
		preload: true,
		stagePlacement: 'left',
		lensCss: { backgroundColor: '#34350D', border: '0px', opacity: 0.4 }//,
//		stageCss: { border: '4px solid #34350D' }
	});
});

