// FORM functions
$(document).ready(function()
{
	$(".input").focus(function() 
	{
		$(this).addClass("inputFocus")
	});
	$(".input").blur(function() 
	{
		$(this).removeClass("inputFocus")
	});
	
	$(".area").focus(function() 
	{
		$(this).addClass("areaFocus")
	});
	$(".area").blur(function() 
	{
		$(this).removeClass("areaFocus")
	});
	
	$(".button").hover(function () 
	{
		$(this).addClass("buttonHover");
	}, function () {
		$(this).removeClass("buttonHover");
	});
});

// LANGUAGE Nav functions
$(function() {
	$('.imgOpa').each(function() {
		$(this).hover(
			function() {
				$(this).stop().animate({ opacity: 1.0 }, 800);
			},
		   function() {
			   $(this).stop().animate({ opacity: 0.3 }, 800);
		   })
		});
});	

// Slider functions
$(function()
{
	//$('#loopedSlider').loopedSlider();
	$('#loopedSlider').loopedSlider({
		autoStart: 2500,
		restart: 3000
	});

});
