// Menu
jQuery(function(){
	jQuery('ul.sf-menu').superfish();
});

// Zoom
$(function() {
	$(".jqzoom").jqzoom();

	var options1 =
	{
		zoomWidth: 305,
		zoomHeight: 494,
		position : 'right',
		lens:true,
		xOffset :0,
		//hideEffect:'fadeout',
		//zoomType:'reverse',
		title :false
	}
	
	var options2 =
	{
		zoomWidth: 440,
		zoomHeight: 300,
		position : 'right',
		yOffset :-222,
		xOffset :10,
		lens:true,
		//hideEffect:'fadeout',
		//zoomType:'reverse',
		title :false
	}

	$(".jqzoom1").jqzoom(options1);
	$(".jqzoom2").jqzoom(options2);
});
