// JavaScript Document
Cufon.replace('h1');
Cufon.replace('h2');
Cufon.replace('h3');
Cufon.replace('ul#nav', {hover:true});

function itemFocus(elem,val)
{
	var el = document.getElementById(elem);
	if (el.value == val) {
		el.value = '';
	}
}

function itemFocusOut(elem,val)
{
	var el = document.getElementById(elem);
	if (el.value == '') {
		el.value = val;
	}
}

//Testimonial Slider

/*$(document).ready(function(){
	$('ul#content_rotator').bxSlider({
		prev_image: 'images/btn_arrow_left.jpg',
		next_image: 'images/btn_arrow_right.jpg',
		wrapper_class: 'slides1_wrap',
		margin: 0,
		auto: true,
		speed: 5000,
		auto_controls: true
	});
});*/
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		timeout: 20000 
	});
});


