$(document).ready(function()
{
	$('.jqzoom').jqzoom({
		zoomType: 'innerzoom',
		preloadImages: false,
		alwaysOn:false,
		title:false
	});
	
	
	
	$("#thumblist img").hover(
	function()
	{
		$(this).css("opacity","0.8");
	},
	function()
	{
		$(this).css("opacity","1");
	});
	
	
	
	
	$(".gallery img").hover(
	function()
	{
		$(this).css("opacity","0.9");
	},
	function()
	{
		$(this).css("opacity","1");
	});
	
	
});
