var slideShowID=1;
var autoSlide=1;

function bannerSwitch(){
	$('#rightArrow').click();
}

function otherServices() {
	var x = $('#formServices select').val();
	if (x=="Slovak Links") {
		$('#formServices').attr("action","/slovak-links");
	} else {
		$('#formServices').attr("action","/board-of-directors");
	}
}

$(function() {
	if (autoSlide==1) {
		setInterval("bannerSwitch()", 8000);
	}
	 $('#header .search input').each(function() { 
		var title = $(this).attr("title");
		$(this).focus(function() {
			if ($(this).val() == title) {
				$(this).val("");
			}
			$(this).css("color","#000");
		}).blur(function() {
			if ($(this).val() == "") {
				$(this).val(title);
			}
			$(this).css("color","#666");
		});
	});
	$('#nav ul li').hover(function() {
		$(this).addClass("hover");
	},function() {
		$(this).removeClass("hover");
	});
	$('#leftArrow').click(function(){if(slideShowID!=1){
		if (slideShowID==2){
			$('#slideImg2').fadeOut("slow");
			$('#slideImg1').fadeIn("slow");
			slideShowID=1;
		} else if (slideShowID==3){
			$('#slideImg3').fadeOut("slow");
			$('#slideImg2').fadeIn("slow");
			slideShowID=2;
		}
	}else{
		$('#slideImg1').fadeOut("slow");
		$('#slideImg3').fadeIn("slow");
		slideShowID=3;
	}});
	$('#rightArrow').click(function(){if(slideShowID!=3){
		if (slideShowID==1){
			$('#slideImg1').fadeOut("slow");
			$('#slideImg2').fadeIn("slow");
			slideShowID=2;
		} else if (slideShowID==2){
			$('#slideImg2').fadeOut("slow");
			$('#slideImg3').fadeIn("slow");
			slideShowID=3;
		}
	}else{
		$('#slideImg3').fadeOut("slow");
		$('#slideImg1').fadeIn("slow");
		slideShowID=1;
	}});
});
