// JavaScript Document

function Clear(text)
{
	if(text.value=="Your Email Address")
		text.value="";
}

function Submit()
{
	var email_val=$("#email").val();
	if(email_val=="" || email_val=="Your Email Address")
	{
		alert("Email address is required");
		return false;
	}
	$.post("index.php",{email:email_val},function(data)
	{
		if(data!="")
		{
			$("#email").val("");
			alert(data);
		}
		else
			alert("An error occurred. Try again please");
	},"html");
	return true;
}

simpleCart.email = "rob@epik.com";
simpleCart.cartHeaders = ["Name","Price","Quantity","remove_noHeader","Total"];		

$(function() {
    $(".rssfeed").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
				visible: 1,
				circular: true
    });							 
		if(liftoffTime!="")
			$('#counter').countdown({until: liftoffTime, description: ' '});
});
