$(document).ready(function(){
	// MENU PASLĒPŠANAS POGAS ANIMĀCIJA
	$(".menu .act").hide().parent().css("border-width","0px");
	$("a.showmenu").click(function(){
		$("a.showmenu").toggleClass("rotate");
		if($("a.showmenu").hasClass("rotate")){
			$(".menu .act").slideDown("slow", function(){
				$(".menu .act").parent().css("border-right","1px solid #C0C0C0");
				$(".menu .act").parent().css("width","159px");
			});
			
		} else{
			$(".menu .act").slideUp("slow", function(){
				$(".menu .act").parent().css("border-width","0px");
				$(".menu .act").parent().css("width","160px");
			});			
		}
		return false;
	});
		
	// APAKŠĒJĀ MENU HOVER EFEKTI
	$(".bottom ul a").hover(function(){
		$(this).children(".over").animate({
			bottom: '-10px',
			left: '-10px'
		}, 500, function() {
			$(this).toggleClass("sel");
		});
	}, function(){
		$(this).children(".over").toggleClass("sel").animate({
			bottom: '-149px',
			left: '-149px'
		}, 500, function() {
			// Animation complete.
		});
	});
	
	// NEWSLETTER POGAS HOVER EFEKTS
	$("a.subscr").hover(function(){
		$(this).stop().animate({backgroundPosition: '97% 50%'});
	},function(){
		$(this).stop().animate({backgroundPosition: '100% 50%'});
	});
	
	// KARTE KONTAKTOS
	$("a.map").nyroModal({
		sizes: {	// Size information
			w: 640,		// width
			h: 480		// height
		}
	});
	
	// IDEA JAUNUMU LIST - LAI SALIEN VISI
	$(".video-list .item:nth-child(3n)").css("padding-right","0px");
	
	// FADE GALLERY
	$("ul.slidegal").fadegal();
});
