/*
$(document).ready (function () {
	if ($('#leftMenu').length > 0) {	// left menu
	
		$('.product-submenu').click (function (e) {
			if ($(this).hasClass('close')) {
				$('.product-submenu').addClass('close');
				$('.product-submenu + ul').slideUp();
				$(this).removeClass('close');
				$(this).next().slideDown();
			}
			e.preventDefault ();
		});
		
		$('.product-submenu').not('.active').each (function () {
			$(this).addClass('close');
			$(this).parent().find('ul').hide();
		});
	
	}
})
*/

$(document).ready (function () {
	if ($.preloadCssImages != undefined) $.preloadCssImages ();
	if ($('#leftMenu').length > 0) {	// left menu
			
		$('.product-submenu').not('.active').each (function () {
			$(this).addClass('close');
			$(this).parent().find('ul').hide();
		});
	
	}
	if ($('#officeSelector').length > 0) {
		var first = true;
		$('#officeSelector').change (function () {
			$('#officeSelector option').each (function () {$('#'+$(this).val()).slideUp();});
			$('#'+$('#officeSelector option:selected').val()).stop().slideDown();
			if (!first) $('#'+$('#officeSelector option:selected').val()).find('iframe')[0].contentDocument.location.reload(true);
			first = false;
		})
		$('#officeSelector').change ();
	}
})
