
/*	Main functions
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

$(document).ready(
	function()
	{


		/*	Intro
			- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/


		$("#intro").find(".b_more").hover(function(){
		  $(this).parents(".content").parent().siblings("div:has(.content)").fadeTo("fast", 0.5);
		},function(){
		  $(this).parents(".content").parent().siblings("div:has(.content)").fadeTo("fast", 1);
		} );

		/*	Fade out
			- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	

		$("#intro").find(".b_more").click(function(){
			var hreflink = $(this).children().attr("href");
			$("#wrapper").animate({ "opacity": "0" }, 900, function(){
			$('#wrapper').animate({ "opacity": "100" }, 0, function(){location.href=hreflink;} );
			
			
		} );
			return false;
		});*/


		/*	MagicBox
			- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

		$('.dymek_check:first').click(function() {
			if ( $('.magicBox.m2').css("display")=="block" ) { $('.magicBox.m2').animate({ "height": "toggle", "opacity": "toggle" }, { duration: "fast" }); };
			$('.magicBox.m1').animate({ "height": "toggle", "opacity": "toggle" }, { duration: "normal" });
			return false;
		});
		$('.dymek_check:last').click(function() {
			if ( $('.magicBox.m1').css("display")=="block" ) { $('.magicBox.m1').animate({ "height": "toggle", "opacity": "toggle" }, { duration: "fast" }); };
			$('.magicBox.m2').animate({ "height": "toggle", "opacity": "toggle" }, { duration: "normal" });
			return false;
		});
		
		$('.magicBox').find(".b_back").click(function() {
			$(this).parent().parent(".magicBox").animate({ "height": "toggle", "opacity": "toggle" }, { duration: "normal" });
			return false;
		});


		/*	Menu FX
			- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
		
			$('#menu > ul > li').children("ul").css({ opacity: "0", top: "0px" });
			$('#menu > ul > li').children("ul").css("top","0px");
			$('#menu > ul > li').hover(function(){
									$(this).children("ul").animate({ "top":"57px", "opacity":"0.95" }, 200);
								},function(){
									$(this).children("ul").animate({ "top":"0px", "opacity":"0" }, 200);
							});



	});
