var activeRotator = 1;
$(function(){
	var spt = $('span.mailme');
	var at = / at /;
	var dot = / dot /g;
	var addr = $(spt).text().replace(at,"@").replace(dot,".");
	$(spt).after('<a class="dark-text" href="mailto:'+addr+'" title="Sūtīt e-pastu!">'+ addr +'</a>')
	.hover(function(){window.status="Sūtīt e-pastu!";}, function(){window.status="";});
	$(spt).remove();
	
	spt = $('span.mailme1');
	at = / at /;
	dot = / dot /g;
	addr = $(spt).text().replace(at,"@").replace(dot,".");
	$(spt).after('<a class="dark-text cont-label" href="mailto:'+addr+'" title="Sūtīt e-pastu!">'+ addr +'</a>')
	.hover(function(){window.status="Sūtīt e-pastu!";}, function(){window.status="";});
	$(spt).remove();
});

function theRotator() {
	//Set the opacity of all images to 0
	$('div#rotator ul li').css({opacity: 0.0});	
	$('div#rotator1 ul li').css({opacity: 0.0});
	$('div#rotator2 ul li').css({opacity: 0.0});
	
	//Get the first image and display it (gets set to full opacity)
	$('div#rotator ul li:first').css({opacity: 1.0});	
	$('div#rotator1 ul li:first').css({opacity: 1.0});
	$('div#rotator2 ul li:first').css({opacity: 1.0});
		
	//Call the rotator function to run the slideshow, 6000 = change to next image after 6 seconds
	setInterval('rotate()',6000);

}

function rotate() {
	switch (activeRotator){
		case 1:
			rotate1();
			break;		
		case 2:
			rotate2();
			break;
		case 3:
			rotate3();
			break;		
	}
	activeRotator++;
	if (activeRotator > 3)
		activeRotator = 1;
}

function rotate1() {	
	//Get the first image
	var current = ($('div#rotator ul li.show')?  $('div#rotator ul li.show') : $('div#rotator ul li:first'));
 
	//Get next image, when it reaches the end, rotate it back to the first image
	var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div#rotator ul li:first') :current.next()) : $('div#rotator ul li:first'));	
	
	//Set the fade in effect for the next image, the show class has higher z-index
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);
 
	//Hide the current image
	current.animate({opacity: 0.0}, 1000)
	.removeClass('show');
	
};

function rotate2() {	
	//Get the first image
	var current = ($('div#rotator1 ul li.show')?  $('div#rotator1 ul li.show') : $('div#rotator1 ul li:first'));
 
	//Get next image, when it reaches the end, rotate it back to the first image
	var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div#rotator1 ul li:first') :current.next()) : $('div#rotator1 ul li:first'));	
	
	//Set the fade in effect for the next image, the show class has higher z-index
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);
 
	//Hide the current image
	current.animate({opacity: 0.0}, 1000)
	.removeClass('show');
	
};

function rotate3() {	
	//Get the first image
	var current = ($('div#rotator2 ul li.show')?  $('div#rotator2 ul li.show') : $('div#rotator2 ul li:first'));
 
	//Get next image, when it reaches the end, rotate it back to the first image
	var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div#rotator2 ul li:first') :current.next()) : $('div#rotator2 ul li:first'));	
	
	//Set the fade in effect for the next image, the show class has higher z-index
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);
 
	//Hide the current image
	current.animate({opacity: 0.0}, 1000)
	.removeClass('show');
	
};

$(document).ready(function() {		
	//Load the slideshow
	if (document.getElementById('rotator'))
		theRotator();
	if (document.getElementById('gallery-box'))
	{
		$("a[rel=gallery]").fancybox();
	}
	
	if (document.getElementById('services-box'))
	{
		$(".service-desc-line-small").hide();
		
		$(".service-desc-line-small").parent().mouseover(function() {
			$(this).children('.service-desc-line-small').show();
		});
	
		$(".service-desc-line-small").parent().mouseout(function() {
			$(this).children('.service-desc-line-small').hide();
		});
	}
	

});

function initialize() {
	  if (document.getElementById("map_canvas") != null)
	  {
		  var map = new GMap2(document.getElementById("map_canvas"));
		  map.setCenter(new GLatLng(57.320995, 24.408989), 13);
		  var point = new GLatLng(57.320995,24.408989);
		  map.addOverlay(new GMarker(point));
		  map.setUIToDefault();
	  }
}
