﻿$(document).ready(function(){

	$(".anim").hide();
	$("#moreInfo").hide();

	$("#co2friText").mouseenter(function() {
		$("#co2friAnim").animate({opacity: "show", top: "40"}, "slow"),
		$("#enkelAnim").animate({opacity: "hide", top: "90"}, "fast"),
		$("#espotAnim").animate({opacity: "hide", top: "98"}, "fast"),
		$("#moreInfo").css("background-position", "0 -200px");
	}).mouseleave(function() {
		$("#co2friAnim").animate({opacity: "hide", top: "10"}, "fast"),
		$("#co2friAnim").animate({top: "70"}, "fast"),
		$("#moreInfo").css("background-position", "0 0");
	});

	$("#espotText").mouseenter(function() {
		$("#espotAnim").animate({opacity: "show", top: "5"}, "slow"),
		$("#enkelAnim").animate({opacity: "hide", top: "90"}, "fast"),
		$("#co2friAnim").animate({opacity: "hide", top: "100"}, "fast"),
		$("#moreInfo").css("background-position", "0 -400px");
	}).mouseleave(function() {
		$("#espotAnim").animate({opacity: "hide", top: "-25"}, "fast"),
		$("#espotAnim").animate({top: "35"}, "fast"),
		$("#moreInfo").css("background-position", "0 0");
	});

	$("#enkelText").mouseenter(function() {
		$("#enkelAnim").animate({opacity: "show", top: "50"}, "slow"),
		$("#espotAnim").animate({opacity: "hide", top: "98"}, "fast"),
		$("#co2friAnim").animate({opacity: "hide", top: "100"}, "fast"),
		$("#moreInfo").css("background-position", "0 -600px");
	}).mouseleave(function() {
		$("#enkelAnim").animate({opacity: "hide", top: "20"}, "fast"),
		$("#enkelAnim").animate({top: "80"}, "fast"),
		$("#moreInfo").css("background-position", "0 0");
	});

	$("#productChooser").mouseenter(function() {
		$('#moreInfo').fadeIn("fast");
	}).mouseleave(function() {
		$('#moreInfo').fadeOut("fast");
	});

// 	function doTeaser() {
// 		setTimeout(function() {
// 			$("#co2friAnim").animate({opacity: "show", top: "40"}, "slow")
// 		}, 4000);
// 	}
// 	doTeaser();

});

