$(document).ready(function ()
{
	function b(txt)
	{
		if(!$('#bag').size())
		{
			$('body').append('<div id="bag" style="background:#000; color:#fff; font-size:12px; padding:20px; position:absolute; left:0; top:0; opacity:0.7; z-index:2000"></div>');
		}
		$('#bag').text(txt);
	}
	$("a[rel=group1], a[rel=group2]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '';
				}
	});

	
	function restoran5()
	{
		if($('.restoran5_inside').width() > 925)
		{
			$('.restoran5').addClass('restoran5_width2');
		}
		else
		{
			$('.restoran5').removeClass('restoran5_width2');
		}
		var restoran5_maxh = 0;
		$('.restoran5 .item_inside').each(function()
		{
			if(restoran5_maxh < $(this).height()) restoran5_maxh = $(this).height();
		});
		$('.restoran5 .item_inside').height(restoran5_maxh);
	}
	restoran5();
	
	$(window).resize(function()
	{
		restoran5();
	});

	
})
