// skillset.de functions

$(document).ready(function() {
	
	$(".item").jFade({
		trigger: "mouseover",
		property: 'background',
		start: 'ffffff',
		end: 'fafafa',
		steps: 10,
		duration: 10
	}).jFade({
		trigger: "mouseout",
		property: 'background',
		start: 'f1f1f1',
		end: 'ffffff',
		steps: 15,
		duration: 15
	});
	
	// thumbnail hover
	$(".thumbnail img").hover(function(){
	$(this).fadeTo("slow", 0.9);
	},function(){
	$(this).fadeTo("slow", 1.0);
	});
	
	$(".thumbnail img").lazyload({         
     effect : "fadeIn",
     threshold : 200
	});
	
});

