$(function(){
	$.fn.jFade.defaults = {
		trigger: "load",
		property: 'background',
		start: 'e3d499',
		end: 'e3d499',
		steps: 5,
		duration: 10
	};

	$(".fade").jFade({
		trigger: "mouseover",
		property: 'background',
		start: 'e3d499',
		end: 'dcc97e',
		steps: 10,
		duration: 10
	}).jFade({
		trigger: "mouseout",
		property: 'background',
		start: 'dcc97e',
		end: 'e3d499',
		steps: 10,
		duration: 15
	});

});

