
$(document).ready(function(){
	$("#contactform").validate({
		rules: {
			name: "required",
			phone: "required",
			email: "required",
			company: "required",
			contact: "required",
			comments: "required",
			textCellulosic: {
				required: "#checkCellulosic:checked"
			},
			textOther: {
				required: "#checkOther:checked"
			}
		}
	});
	$("#checkCellulosic").click(function() {
		$("#textCellulosic").valid();
	});
	$("#checkOther").click(function() {
		$("#textOther").valid();
	});
	var timeStamp = new Date().getTime();
	$('<input type="hidden" name="timestamp" value="'+ timeStamp +'" />').appendTo('form#contactform');
	$("#indexRotate").rotate({
		length: 15000,
		speed: 2500
	});
	
	$("h1.sprite").click(function(e){
		window.location="/";
	});
	$(".youtubelink").colorbox({iframe:true, innerWidth:425, innerHeight:344});

});
