$(document).ready(function(){
	// Activate the main slider	
$(window).load(function() {
    $('#slider').nivoSlider({
    });
});
// jQuery image change on hover
	$('div#servicesContainer')
        .mouseover(function() { 
            var src = $(this).attr("src").match(/[^\.]+/) + "Over.png";
            $(this).attr("src", src);
        })
        .mouseout(function() {
            var src = $(this).attr("src").replace("Over", "");
            $(this).attr("src", src);
        });
// Quote	
$(document).ready(function(){
	$('#quote .slide');
	setInterval(function(){
		$('#quote .slide').filter(':visible').fadeOut(4000,function(){
			if($(this).next('.slide').size()){
				$(this).next().fadeIn(300);
			}
			else{
				$('#quote .slide').eq(0).fadeIn(300);
			}
		});
	},3000);	
});	
});	

