$(document).ready(function() {
	$('.topbar a, .menu_saule a').hover(function() {
		var id = $(this).attr("li");
		$('#'+id).addClass("toppbar_hover");
	}, function() {
		var id = $(this).attr("li");
		$('#'+id).removeClass("toppbar_hover");
	});
	
	$("a.galerija").fancybox({
		'zoomSpeedIn':		0, 
		'zoomSpeedOut':		0, 
		'zoomSpeedChange':	0,
		'overlayShow':		true,
		'centerOnScroll':	false,
		'imageScale': true
	});
	
	
	$('#atsauksmes_poga, #jautajumu_poga, #registreties_poga').hover(function() {
		var test = $(this).attr("src").replace(".png", "_over.png");
		$(this).attr({src: test});
	}, function() {
		var test = $(this).attr("src").replace("_over.png", ".png");
		$(this).attr({src: test});
	});
	
	$('.atcereties_switch').click(function(){					   
		var current = $(this).attr("src");
		if(current=='img/atcereties_on.gif'){
			$(this).attr({src: 'img/atcereties_off.gif'});
		}else{
			$(this).attr({src: 'img/atcereties_on.gif'});
		}
	});
	
	$('.ienaktPoga').click(function(){
		$("#auth_forma").submit();
	});
});