var ie/*@cc_on=1@*/;

function map()
{
	if (GBrowserIsCompatible())
	{
		var map = new GMap2(document.getElementById('map'));
			map.setCenter(new GLatLng(55.737205,37.562031),15);
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			var point = new GLatLng(55.737205,37.562031);
			map.addOverlay(new GMarker(point));
	}
	// sup 55.74755,37.581203
	// sup.ru ABQIAAAAdNyMLZkqGnnQQT3VGG7vsBRS_OjBYHh05end5RTLuHiM1wYL1RSL4jsIF035TKRcnnNExa5XWAg4Hg
	// sup.com ABQIAAAAdNyMLZkqGnnQQT3VGG7vsBRMqyFSM-egOs_4N3Iz2fhZu-MArBTZwa2yGubgiKOIuigHuwHs4yL6fQ
}

$(document).ready(function()
{
	var root = document.documentElement;
		root.id = 'js'

	// Calendar
	$('ul.calendar ul li').each(function(i){ if(!((i+1) % 3)) $(this).after('<br/>'); });

	// Email
	$('#subscribe').focus(function(){ if(this.value == 'your@email.com') this.value = ''; });
	$('#subscribe').blur(function(){ if(this.value == '') this.value = 'your@email.com'; });

	// FAQ
	$('ol.faq dt strong').each(function(i){
		$(this).before(i+1 + '. ');
		$(this).click(function(){
			$(this).parents('ol').children('li').removeClass('on');
			$(this).parents('li').addClass('on');
		});
	});
	//Vacancies
		$('.module').click(function(){
			if($(this).hasClass('module-on')) {
				$(this).removeClass('module-on')
			}else{
				$(this).parents('div').children('dl').removeClass('module-on');
				$(this).addClass('module-on');
			}
		});

	// Request
	$('#req-dep6-value').focus(function(){
		$('#req-dep6').attr('checked',true);
	});
});

