<!-- docu: http://www.webinventif.fr/wslide-plugin/ -->

$(document).ready(function(){

	$("#slider").wslide({
		width: 618,
		height: 464,
		horiz: true,
		duration: 1000,
		effect: 'easeOutExpo',
		autolink: false
	});
	
	for (var i = 1;i<8;i++) {
		document.getElementById("img"+i).onclick = function() { setActive(this); }
	}
	
	document.getElementById("form").onsubmit = function () {
	
		var data = new Object;
		data.email = document.getElementById('email').value;
	
		$.ajax({
		  type: 'POST',
		  url: 'sendmail.php',
		  data: data,
		  success: function(ret) {
				eval(ret);
		  }
		});
		
		return false;

	}
	
	document.getElementById("email").onfocus = function() {
		if (this.value == "Enter your E-mail address") {
			this.value = '';
			this.style.color = "#000";
		}
	}
	
	document.getElementById("email").onblur = function() {
		if (this.value == "") {
			this.value = "Enter your E-mail address";
			this.style.color = "#b2b2b2";
		}
	}
	
})

function setActive(myImg) {

	for (var i = 1;i<8;i++) {
		document.getElementById("img"+i).src = "circle_inactive.png";
	}
	
	myImg.src = "circle_active.png";
	
}
