// jQuery here:
$(document).ready(function(){
	$('div#splash_left ul').cycle({fx:'fade', pause:2});
	
	$('a[rel*=lightbox]').lightBox();
});

//For the form colors:
var x;
function blurBox(x){
	x.style.borderColor="#333";
	x.style.backgroundColor="#e9e9e9";
}

function focusBox(x){
	x.style.borderColor="#09f";
	x.style.backgroundColor="#fff";
}

function clearText(x){
	var message = x.value;
	var default_message = "Type your message here. If you need a quote, give us all the details you can for your project so we can be as accurate as possible.";
	if(message == default_message){
		x.value = "";
	}
}

function restoreText(x){
	var message = x.value;
	var default_message = "Type your message here. If you need a quote, give us all the details you can for your project so we can be as accurate as possible.";
	if(message == ""){
		x.value = default_message;
	}
}