//	Набор скриптов для сайта
//	
//	Использует:
//	jquery.js
//
////////////////////////////////////////////////

// jQuery.noConflict();

(function($) {

	function InitSite()
	{
		InitMap();
		InitLogo();
		InitGallery();
	}
	
	function InitMap()
	{
		if( $("#Map").length > 0 && $("#MapLink").length > 0 )
		{
			$("#MapLink").click(function(){
				$("#MapShade").fadeTo(1, 0.8);
				$("#MapShade").css("height", $(document).height() + "px");
				$("#Map").fadeIn("fast");
			});
			$("#Map img").click(function(){
				$("#Map").fadeOut("fast");
			});
		}
	}
	
	function InitLogo()
	{
		if( $("#Logo").length > 0 )
		{
			$("#Logo").flash({
				src:	"/fla/Logotype.swf",
				width:	350,
				height:	240,
				wmode:	"opaque"
			});
		}
		if( $("#LogoLink").length > 0 )
		{
			$("#LogoLink").flash({
				src:	"/fla/Logotype_link.swf",
				width:	350,
				height:	240,
				wmode:	"opaque"
			});
		}
	}

	function InitGallery()
	{
		if( $("#Gallery .thumbs").length > 0 )
		{
			$("#Gallery .thumbs a").lightBox();
		}
	}


////////////////////////////////////////////////////////////////////////////////
	$(document).ready( function(){ InitSite(); });
})(jQuery);
