$(document).ready(function(){
	// GRUPAS MENU PASLĒPŠANA
	$(".groupmenu .act").hide().parent().css("border-width","0px").css("width","160px");
	$(".groupmenu a.showmenu").click(function(){
		$(this).toggleClass("rotate");
		if($(this).hasClass("rotate")){
			$(".groupmenu .act").slideDown("slow", function(){
				$(".groupmenu .act").parent().css("border-width","1px");
				$(".groupmenu .act").parent().css("width","159px");
			});
			
		} else{
			$(".groupmenu .act").slideUp("slow", function(){
				$(".groupmenu .act").parent().css("border-width","0px");
				$(".groupmenu .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() {
			// 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");
	
	// KARTE KONTAKTOS
	$("a.map").prettyPhoto({
		default_width: 640,
		default_height: 480
	});
	
	// FADE GALLERY
	$("ul.fadegal").fadegal();
});
