var tix = 0;
var mappos = [52.224556, 20.959119]

$().ready(function () 
{
	Cufon.replace('#menu li, #top-bg-ov, div.top-sub-col h2, div.col-wide h2, div.col h2');
	$('div.content-gallery a').lightbox({ fitToScreen: true, imageClickClose: false });
	if ($('#top-bg').find('img.top-bg-anim').size() > 0) setTimeout(top_anim, 5000);
	if ($('#contact-map').size() > 0) showmap();
});

var top_anim = function ()
{
	var cc = $('#top-bg').find('img.top-bg-anim').size();
	$('#top-bg').find('img.top-bg-anim:eq(' + tix + ')').fadeOut('slow', function () { $(this).hide(); });	
	tix = tix + 1 >= cc ? 0 : tix + 1;
	$('#top-bg').find('img.top-bg-anim:eq(' + tix + ')').fadeIn('slow');
	setTimeout(top_anim, 5000);
};

var showmap = function ()
{
	var _opts = { clickable: true, draggable: false };
	var _marker1 = new GMarker(new GLatLng(mappos[0], mappos[1]), _opts);
	GEvent.addListener(_marker1, 'click', function () { _marker1.openInfoWindowHtml('<strong>' + 'Four Senses' + '</strong><br />' + 'ul. Bema 65' + '<br />' + '01-225 Warszawa'); })
	
	map = new google.maps.Map2($('#contact-map').get(0));
	map.setCenter(new google.maps.LatLng(mappos[0], mappos[1]), 13);
	map.addControl(new GSmallZoomControl3D());
	map.addControl(new GMenuMapTypeControl());
	map.addOverlay(_marker1);
};
	
	