
$(document).ready(function ()
{
	
	$('.product .image a, .product .thumbs a').fancybox({
		'hideOnContentClick': true
	});
	
	
	$('#lmenu ol li ol').hide();
	$('#lmenu ol li.selected ol').show();
	
	$('#lmenu ol li > a').click(function ()
	{
		if($(this).parent().find('ol').is(':hidden'))
		{
			$(this).parent().find('ol').slideDown();

			return false;
		}
	});
});





