/**
 * @author 
 */
var width = 0;
var count = 5;

function set_width(cls)
{
	if ($(cls).find('li').length > 5) count = 5
	else count =  $(cls).find('li').length;
	
	width = ($(cls).parent().width()-100) / count;
	if (width < 100) width = 100;
	$(cls).find('li').width(width);
}

$(document).ready(function(){
	
	
	
	$('.catalog-items .preview').hover(
		function()	
		{
			$(this).find('.large').css('display', 'block');
		},
		function()	
		{
			$(this).find('.large').css('display', 'none');
		})
		
	$('.thickbox').fancybox({ 
		'zoomSpeedIn': 200, 
		'zoomSpeedOut': 200,
		'frameWidth': 100,
		'frameHeight': 100,
		'overlayShow': true,
		'hideOnContentClick' :false,
		'centerOnScroll' : false
	});
	
	
});	 
