// When document is ready load fade, colorbox, testimonials ticker.
$(document).ready(function() {
	if($.support.opacity) {
	$('.fade').hover(
		function() {
			$(this).stop().animate({opacity:0.8, filter: ''},"fast");
		},
		function() {
			$(this).stop().animate({opacity:1, filter: ''},"fast");
	});
	}
	$(".colorbox").colorbox({iframe:true, innerWidth:425, innerHeight:344});
	$('#testimonials .slide');
	setInterval(function(){
		$('#testimonials .slide').filter(':visible').fadeOut(3000,function(){
			if($(this).next('li.slide').size()){
				$(this).next().fadeIn(1000);
			}
			else{
				$('#testimonials .slide').eq(0).fadeIn(1000);
			}
		});
	},5000);	
});

// Load Nivo Slider
$(window).load(function() {
    $('#slider').nivoSlider({
        controlNav:false
    });
});










	
