$(document).ready(function(){
	// APAKŠĒJĀ MENU HOVER EFEKTI
	$(".bottom ul a").hover(function(){
		$(this).children(".over").animate({
			bottom: '-10px',
			left: '-10px'
		}, 500, function() {
			// Animation complete.
		});
	}, function(){
		$(this).children(".over").animate({
			bottom: '-149px',
			left: '-149px'
		}, 500, function() {
			// Animation complete.
		});
	});
	
	// NEWSLETTER POGAS HOVER EFEKTS
	$("a.subscr").hover(function(){
		$(this).animate({backgroundPosition: '97% 50%'});
	},function(){
		$(this).animate({backgroundPosition: '100% 50%'});
	});
	
	// TRIKS AR SMUKA IZSKATA TOPMENU
	$(".topmenu ul li:nth-child(1n+6)").css("padding","2px 0 1px 5px").css("margin-top","1px");
	
	// FADE GALLERY
	$("ul.fadegal").fadegal();
	
	// GRUPU SLAIDERIS
	$("a.next").click(function(){
		if(! $(this).hasClass("inact")){
			$(".main.groups ul").animate({
				left: '-=160px'
			}, 1000, function() {});
			$(this).toggleClass("inact");
			$("a.prev").toggleClass("inact");
		}
		return false;
	});
	$("a.prev").click(function(){
		if(! $(this).hasClass("inact")){
			$(".main.groups ul").animate({
				left: '+=160px'
			}, 1000, function() {});
			$(this).toggleClass("inact");
			$("a.next").toggleClass("inact");			
		}
		return false;
	});
})
